diff --git a/src/api/regulatoryPlatForm.js b/src/api/regulatoryPlatForm.js index 91c0d01..3d92b8f 100644 --- a/src/api/regulatoryPlatForm.js +++ b/src/api/regulatoryPlatForm.js @@ -32,3 +32,12 @@ export function taskUnionPageStatistic(data) { }) } +// 待办总览统计(正常、超期、即将超期) +export function indexPageStatistic(data) { + return request({ + url: '/aiccs-api/task/indexPageStatistic', + method: 'post', + data + }) +} + diff --git a/src/views/regulatoryPlatForm/index.vue b/src/views/regulatoryPlatForm/index.vue index cf87bfd..b6cc098 100644 --- a/src/views/regulatoryPlatForm/index.vue +++ b/src/views/regulatoryPlatForm/index.vue @@ -4,9 +4,9 @@
待办事项总览 - 正常 12 - 超期 42 - 即将超期 122 + 正常 {{ statusData.normal }} + 超期 {{ statusData.overdue }} + 即将超期 {{ statusData.soonOverdue }}
@@ -77,7 +77,7 @@