From 5cf9f7d97f2a63b09ac2bebb75d7597d59637274 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 3 Mar 2023 09:39:51 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E8=AE=A1=E5=8F=91=E9=80=81=E6=9C=8B?= =?UTF-8?q?=E5=8F=8B=E5=9C=88=E3=80=81=E7=8E=AF=E7=8A=B6=E5=9B=BEbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppCooperationPropaganda/circleDetail.vue | 28 ++++++++----------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/src/project/huizhili/AppCooperationPropaganda/circleDetail.vue b/src/project/huizhili/AppCooperationPropaganda/circleDetail.vue index b103e62f..d1579d57 100644 --- a/src/project/huizhili/AppCooperationPropaganda/circleDetail.vue +++ b/src/project/huizhili/AppCooperationPropaganda/circleDetail.vue @@ -44,15 +44,6 @@
-
{{ item }} @@ -61,7 +52,7 @@
@@ -86,23 +77,25 @@ export default { currentClickTime: "", detail: {}, - subsection: [ - // { name: "未执行" }, - // { name: "已执行" }, - // { name: "无法执行" }, - ], + subsection: [], update: true, type: "", percent: 0, }; }, computed: { - colConfigs() { + colConfigs0() { return [ { prop: "userName", label: "成员" }, { prop: "customerCount", label: "预计送达居民"}, ]; }, + colConfigs1() { + return [ + { prop: "userName", label: "成员" }, + { prop: "customerCount", label: "预计发送朋友圈"}, + ]; + }, }, onLoad(o) { this.id = o.id; @@ -232,6 +225,7 @@ export default { show: true, formatter: ({ name, value }) => { this.percent = value / this.info.planCount * 100 || 0 + // console.log(this.percent) return `{name|任务达成率\n\n}{value|${ this.percent }%}` }, textStyle: { @@ -251,7 +245,7 @@ export default { }, }, { - value: 100 - this.percent, + value: this.info.planCount - this.info.executedCount, name: "未执行成员" }, ],