From efb3748ab9ff433620d843c4bed8509d562decaa Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 9 Feb 2022 11:32:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=81=A5=E5=BA=B7=E4=B8=8A=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/saas/AppHealthUp/AppHealthUp.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/saas/AppHealthUp/AppHealthUp.vue b/src/saas/AppHealthUp/AppHealthUp.vue index 1d189655..2e0e6c01 100644 --- a/src/saas/AppHealthUp/AppHealthUp.vue +++ b/src/saas/AppHealthUp/AppHealthUp.vue @@ -14,7 +14,7 @@

姓名

- +
@@ -79,7 +79,7 @@
姓名
-
张三
+
@@ -145,7 +145,7 @@ export default { data() { return { tabList: [{ name: '健康上报'},{ name: '上报统计'}], - currentTabs: 1, + currentTabs: 0, form: {}, isUpload: false, weekList: ['一', '二', '三', '四', '五', '六', '日'] @@ -155,12 +155,19 @@ export default { ...mapState(['user']), }, onLoad() { - + this.getStatis() }, onShow() { document.title = '健康上报' }, methods: { + getStatis() { + this.$http.post(`/app/appepidemichealthreport/statistic`).then((res) => { + if (res.code == 0) { + // this.dataInfo = res.data + } + }) + }, change(index) { this.currentTabs = index },