English
customTotalInfo
About 221 wordsLess than 1 minute
2025-09-22
This hook is used to customize the statistics field area of the stage view and each stage card.
Note: This hook is used to customize the statistics field area of the stage view and each stage card.
customTotalInfo
You can use this method to customize the statistics field area of the stage view and the statistics field area of each stage card.
Parameters
| Parameter | Description | Type |
|---|---|---|
| stageList | Stage list data | Array |
| getListContext | Passed-through list API | Object |

Parameter Code Example
customTotalInfo(params, context) {
console.error(params)
console.error(context)
return 'Custom Content Area 44'
}Code Example
export default {
customTotalInfo(params, context) {
console.error(params)
console.error(context)
return 'Custom Content Area 44'
}
};
Notes
How to set a custom view:
- Configure
rootin the generatedconfig.jsonfile to point to the custom component. - Write the custom component inside the generated
componentsfolder.

