2026.6.23 待办数
parent
e44c86d2d4
commit
6ea2560100
|
|
@ -1137,7 +1137,8 @@ class HomePageState extends RouteAwareState<HomePage>
|
||||||
int zdzysqCount = int.parse(keyTasksWork['data']['zdzysqCount']??0);
|
int zdzysqCount = int.parse(keyTasksWork['data']['zdzysqCount']??0);
|
||||||
int bjcrqrCount = int.parse(keyTasksWork['data']['bjcrqrCount']??0);
|
int bjcrqrCount = int.parse(keyTasksWork['data']['bjcrqrCount']??0);
|
||||||
int yhdzgCount = int.parse(keyTasksWork['data']['yhdzgCount']??0);
|
int yhdzgCount = int.parse(keyTasksWork['data']['yhdzgCount']??0);
|
||||||
keyTasksNum = bjcrqrCount+yhdzgCount+zdzysqCount;
|
int feedbackCount = int.parse(keyTasksWork['data']['feedbackCount']??0);
|
||||||
|
keyTasksNum = bjcrqrCount+yhdzgCount+zdzysqCount+feedbackCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (FormUtils.hasValue(hiddenDangerWork, 'success') && hiddenDangerWork['success']) {
|
if (FormUtils.hasValue(hiddenDangerWork, 'success') && hiddenDangerWork['success']) {
|
||||||
|
|
|
||||||
|
|
@ -116,6 +116,8 @@ class _DoorcarTabPageState extends State<KeyTasksTabPage> {
|
||||||
gateSection.items[1].badge = int.parse(data['bjcrqrCount']??0);
|
gateSection.items[1].badge = int.parse(data['bjcrqrCount']??0);
|
||||||
// 整改
|
// 整改
|
||||||
gateSection.items[2].badge = int.parse(data['yhdzgCount']??0);
|
gateSection.items[2].badge = int.parse(data['yhdzgCount']??0);
|
||||||
|
// 处罚反馈
|
||||||
|
gateSection.items[4].badge = int.parse(data['feedbackCount']??0);
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue