diff --git a/src/apps/AppEpidemicSituation/BackUserList.vue b/src/apps/AppEpidemicSituation/BackUserList.vue
index fbf85db4..85eb6c40 100644
--- a/src/apps/AppEpidemicSituation/BackUserList.vue
+++ b/src/apps/AppEpidemicSituation/BackUserList.vue
@@ -2,19 +2,19 @@
@@ -58,6 +58,7 @@ export default {
current: 1,
list: [],
name: '',
+ totalInfo: {}
}
},
computed: { ...mapState(['user']) },
@@ -65,6 +66,10 @@ export default {
this.areaId = this.user.areaId
document.title = '疫情防控'
this.getList()
+ this.getTotal()
+ uni.$on('updateList', () => {
+ this.getListInit()
+ })
},
methods: {
areaSelect() {
@@ -91,6 +96,13 @@ export default {
}
})
},
+ getTotal() {
+ this.$http.post(`/app/appepidemicbackhomerecord/statistic`).then((res) => {
+ if (res.code == 0) {
+ this.totalInfo = res.data
+ }
+ })
+ },
toUser(row) {
uni.navigateTo({url: `./UserInfo?id=${row.id}`})
}
diff --git a/src/apps/AppEpidemicSituation/ErrorInfo.vue b/src/apps/AppEpidemicSituation/ErrorInfo.vue
index bda3727b..720edb69 100644
--- a/src/apps/AppEpidemicSituation/ErrorInfo.vue
+++ b/src/apps/AppEpidemicSituation/ErrorInfo.vue
@@ -1,47 +1,39 @@
-