This commit is contained in:
yanran200730
2023-03-01 14:48:23 +08:00
parent 36f401b165
commit 74e78c8e59
3 changed files with 39 additions and 29 deletions

View File

@@ -53,11 +53,11 @@
</div>
</div>
<div class="tips">
<p>消息预计送达居民</p>
<p>消息预计可见居民数</p>
<span>{{ groupLen }}</span>
<el-tooltip
placement="top"
content="将由指定群主发送给TA作为群主的所有的群由于企业微信限制当超过1000个时将只发送到最近活跃的1000个群">
content="将由指定人员发送给TA添加的且符合所有筛选条件的居民当多个人员添加同一个居民时该居民只可看见第1个完成发表的人员的朋友圈">
<i class="iconfont iconModal_Warning"></i>
</el-tooltip>
</div>
@@ -335,7 +335,9 @@ export default {
...mapState(['user']),
groupLen() {
return this.form.executorList.length
return this.form.executorList.map(v => v.customerCount).reduce((prev, cur) => {
return prev + cur
}, 0)
}
},