English
Business Flow To-Do Feature Enhancements
About 403 wordsAbout 1 min
2026-04-09
The Business Flow to-do page can be extended from two dimensions: list page and card page. When list batch capabilities or card buttons need to be extended, connect to Web Business Flow to-do plugin events or mobile Business Flow to-do Hooks according to the terminal. See the reference manual for details.
Typical scenarios include:
- Web: Configure whether comments are required in batch agree/reject popups after the list is rendered
- Web: Get card and button data before a card is rendered, then customize card buttons
- Mobile: Customize actions before bottom buttons on Business Flow to-do cards are rendered
Applicable Pages
- Business Flow to-do list page / to-do card (Web / mobile)
When should I use Business Flow to-do feature enhancements?
If you encounter any of the following requirements, the capabilities on this page are usually a good fit:
- You need to configure batch agree/reject and comment-required policies at the list level
- You need to customize displayed buttons at the card level
- Mobile needs to rewrite buttons before bottom buttons on Business Flow to-do cards are rendered
Development Approach
Business Flow to-do feature enhancements can usually be understood in three steps:
- Identify the terminal (Web / mobile) and access point (after list rendering, before card rendering, or before button rendering)
- Register events or Hooks in the corresponding Business Flow to-do plugin or Business Flow detail plugin (for some mobile Hooks)
- Release the plugin and jointly debug it on the Business Flow to-do path
Development Workflow
Read the Web Business Flow to-do plugin overview and the mobile Hook documentation below.
Create/configure the Business Flow-related JS plugin in the admin console. The plugin type is subject to the actual admin options.
Register events or Hooks according to "Recommended Entry Points" and implement the business logic.
Jointly debug and release on the Business Flow to-do list and single-card paths.
Recommended Entry Points
Web
flowTodo.bpmList.render.after- After the to-do list is renderedbpm.remindCard.render.before- Before the to-do card is rendered
Mobile
flow.remind.list.card.btn.render.before- Before the bottom buttons of a Business Flow to-do card are rendered
