From a47895cff1dd5ba0c307e3a462353f0b195de23e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com> Date: Fri, 16 Aug 2024 11:43:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/index.vue b/src/views/index.vue index 9cecfde..6b2e336 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -144,15 +144,17 @@ export default { res.data.forEach((e) => { countydata.push(e.time); }); + // 当月新增患者数量 var countydatay = []; res.data.forEach((e) => { - countydatay.push(e.signPatientCount); + countydatay.push(e.patientCount); }); var proportionlist = []; res.data.forEach((e) => { e.proportion = e.proportion*100; proportionlist.push(e.proportion); }); + // 签约数 var signPatientCountlist = []; res.data.forEach((e) => { signPatientCountlist.push(e.signPatientCount);