bug
This commit is contained in:
@@ -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)
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user