From 1ff06b29588126cbbf01db43bf4c98c32370272b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=B6=E5=90=AF=E9=BE=99?= Date: Wed, 6 Nov 2024 09:54:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../new_dashboard_component/OrderStatistics.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webs/sms-web/src/views/configs/setting_dashboard/new_dashboard_component/OrderStatistics.vue b/webs/sms-web/src/views/configs/setting_dashboard/new_dashboard_component/OrderStatistics.vue index 99d65bb..396813e 100644 --- a/webs/sms-web/src/views/configs/setting_dashboard/new_dashboard_component/OrderStatistics.vue +++ b/webs/sms-web/src/views/configs/setting_dashboard/new_dashboard_component/OrderStatistics.vue @@ -37,8 +37,8 @@ export default { getItemList() { getOrderStatistics().then(data => { if (data.success) { - this.numList[0].value = data.data.todoCount || 0 - this.numList[1].value = data.data.doneCount || 0 + this.numList[0].value = data.data.waitDoneTotal || 0 + this.numList[1].value = data.data.doneTotal || 0 this.numList[2].value = data.data.orderTotal || 0 } })