diff --git a/src/apps/AppDataScreening/AppDataScreening.vue b/src/apps/AppDataScreening/AppDataScreening.vue index 51c5c73e..e52716c6 100644 --- a/src/apps/AppDataScreening/AppDataScreening.vue +++ b/src/apps/AppDataScreening/AppDataScreening.vue @@ -5,25 +5,18 @@ 居民群 -
12
-

共201位群成员

+
{{totalInfo.groupNumber}}
+

共{{totalInfo.userNumber}}位群成员

组织信息 - 共72人 + 共{{orgInfo.total}}人
-
+
- 曼城去应急管理处曼城去应急管理处曼城去应急管理处曼城去应急管理处 -
- -
-
-
- - 曼城去应急管理处曼城 + {{item.name}}
@@ -40,11 +33,13 @@ export default { appName: "数据总览", data() { return { - + totalInfo: {}, + orgInfo: {} } }, computed: {...mapState(['user'])}, created() { + this.getTotal() }, onShow() { document.title = '数据总览' @@ -52,6 +47,19 @@ export default { methods: { linkTo(url) { uni.navigateTo({ url }) + }, + getTotal() { + this.$http.post(`/app/wxcp/wxgroup/getGoupAndUserCount`).then(res => { + if (res?.code == 0) { + this.totalInfo = res.data + } + }) + this.$http.post(`/app/appdvcpconfig/getOrganizationalInfo`).then(res => { + if (res?.code == 0) { + this.orgInfo = res.data + } + }) + } }, } diff --git a/src/apps/AppDataScreening/img/right-icon.png b/src/apps/AppDataScreening/img/right-icon.png new file mode 100644 index 00000000..e1c626b7 Binary files /dev/null and b/src/apps/AppDataScreening/img/right-icon.png differ diff --git a/src/apps/AppDataScreening/img/tx@2x.png b/src/apps/AppDataScreening/img/tx@2x.png new file mode 100644 index 00000000..d9620e08 Binary files /dev/null and b/src/apps/AppDataScreening/img/tx@2x.png differ diff --git a/src/apps/AppDataScreening/orgDetail.vue b/src/apps/AppDataScreening/orgDetail.vue index 283d487f..050f2b1e 100644 --- a/src/apps/AppDataScreening/orgDetail.vue +++ b/src/apps/AppDataScreening/orgDetail.vue @@ -1,11 +1,16 @@