From 986cdf6e069df008a2edc6d0ee11170f11330180 Mon Sep 17 00:00:00 2001 From: wangshuai <464942911@qq.com> Date: Tue, 12 Apr 2022 17:13:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9=E7=AE=80?= =?UTF-8?q?=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/center/Piabodata/index.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pages/center/Piabodata/index.vue b/pages/center/Piabodata/index.vue index 240ee69..e8d21a2 100644 --- a/pages/center/Piabodata/index.vue +++ b/pages/center/Piabodata/index.vue @@ -468,15 +468,15 @@ lastStartDate: this.lastStartDate }) .then(res => { - // 接待量 - this.numlist[0].num = res.receptionCount || 0 - // 接待客户 - this.numlist[1].num = res.sumCustomer || 0 // 执行率 - this.numlist[2].num = (res.fraction || 0) + '%' + this.numlist[0].num = (res.fraction || 0) + '%' + // 平均接待时长 - this.numlist[3].num = Math.floor(res.sumDuration / 60) || 0 - // util.formatSecond()||0 + this.numlist[1].num = res.avgDuration || 0 + // 接待量 + this.numlist[2].num = res.receptionCount || 0 + // 有效接待 + this.numlist[3].num = res.activeCustomer || 0 }) },