English
crossNoticeChange
About 55 wordsLess than 1 minute
2025-12-16
This method lets you listen for notice changes in connected applications and get the badge count.
Syntax: FxUI.appApi.crossNoticeChange(params, handler)
Parameters
| Parameter | Description | Type | Allowed Values | Default |
|---|---|---|---|---|
| params | Listener parameters | object | — | — |
| handler | Handler function | function | — | — |
Example
FxUI.appApi.crossNoticeChange({
accessInfoList: [{
upEa: 'fsceshi003'
}]
}, (res) => {
console.log('Todo', res);
this.dTodoCount = res['fsceshi003'].notReadCount;
})