diff --git a/src/project/huizhili/AppCooperationPropaganda/AppCooperationPropagandaBeta.vue b/src/project/huizhili/AppCooperationPropaganda/AppCooperationPropagandaBeta.vue index 52b1281c..fe5b4b3e 100644 --- a/src/project/huizhili/AppCooperationPropaganda/AppCooperationPropagandaBeta.vue +++ b/src/project/huizhili/AppCooperationPropaganda/AppCooperationPropagandaBeta.vue @@ -20,7 +20,13 @@ item.status == 3? 'status3':item.status==4? 'status4': 'status5'">{{ $dict.getLabel('mstStatus', item.status) }}
群发时间:{{ item.choiceTime }}
-
共需{{ item.groupOwnerCount || 0 }}名成员完成群发,目前已完成{{ item.completionRate || 0 }}%
+
共需 + + {{ item.groupOwnerCount || 0 }} + {{ item.receiveExecutorCount || 0 }} + 名成员完成群发,目前已完成 + {{ item.completionRate }}% +
创建部门: {{ item.createUserDeptName }} diff --git a/src/project/huizhili/AppCooperationPropaganda/detail.vue b/src/project/huizhili/AppCooperationPropaganda/detail.vue index ae815558..d96b7d50 100644 --- a/src/project/huizhili/AppCooperationPropaganda/detail.vue +++ b/src/project/huizhili/AppCooperationPropaganda/detail.vue @@ -45,8 +45,13 @@
群发范围 - 全部{{ data.receiveGroupCount || 0}}个居民群 - 按条件筛选的{{ data.receiveGroupCount || 0}}个居民群 +
+ 全部按条件筛选的 + {{ data.receiveGroupCount || 0}} + {{ resSum || 0}} + {{ cirSum || 0}} + 个居民群个居民个朋友圈 +

群发内容

@@ -108,6 +113,8 @@ export default { options: '', approver: [], //审批人 type: '', + resSum: 0, + cirSum: 0, } }, onLoad(o) { @@ -135,6 +142,8 @@ export default { this.webpage = res.data.contents.filter(v=> v.msgType == 4) this.miniapp = res.data.contents.filter(v=> v.msgType == 5) this.approver = res.data.examines + this.resSum = res.data.groupList.reduce((pre, cur) => pre + cur.customerCount, 0) + this.cirSum = res.data.executorList.reduce((pre, cur) => pre + cur.customerCount, 0) // if(res.data.status==1) { // 拒绝 // this.approver = res.data.examines.filter(e=> e.examineStatus == 2) // } else { // 通过 @@ -253,11 +262,11 @@ export default { .scope { display: flex; margin-bottom: 16px; - span:first-child { + & > span { width: 160px; color: #999; } - span:last-child { + & > div { width: calc(100% - 160px); } } diff --git a/src/project/huizhili/AppCooperationPropaganda/sendScoped.vue b/src/project/huizhili/AppCooperationPropaganda/sendScoped.vue index fe3ce47e..0065b012 100644 --- a/src/project/huizhili/AppCooperationPropaganda/sendScoped.vue +++ b/src/project/huizhili/AppCooperationPropaganda/sendScoped.vue @@ -60,7 +60,8 @@ export default { this.$loading() if(this.sendType == 'ResidentsGroup') { this.getWxGroups() - } else if(this.sendType == 'Residents' || this.sendType == 'CircleOfFriends') { + } + if(this.sendType == 'Residents' || this.sendType == 'CircleOfFriends') { this.getSendScope() } uni.setStorageSync('sendScope', this.sendScope)