bug
This commit is contained in:
		| @@ -149,6 +149,7 @@ | ||||
|       <ai-dialog | ||||
|         :visible.sync="isShowGroups" | ||||
|         width="890px" | ||||
|         customFooter | ||||
|         title="群发范围" | ||||
|         @onConfirm="isShowGroups = false"> | ||||
|         <ai-wrapper> | ||||
| @@ -165,6 +166,9 @@ | ||||
|           <ai-info-item label="性别" isLine>{{ mapGender(info.gender) }}</ai-info-item> | ||||
|           <ai-info-item label="添加时间" isLine>{{ info.addEndTime + '-' + info.addFromTime }}</ai-info-item> | ||||
|         </ai-wrapper> | ||||
|         <div class="dialog-footer" slot="footer"> | ||||
|           <el-button @click="isShowGroups = false">关闭</el-button> | ||||
|         </div> | ||||
|       </ai-dialog> | ||||
|       <div class="detail-phone" v-if="isShowPhone"> | ||||
|         <div class="mask"></div> | ||||
|   | ||||
| @@ -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) | ||||
|     } | ||||
|   }, | ||||
|  | ||||
|   | ||||
| @@ -149,6 +149,7 @@ | ||||
|       <ai-dialog | ||||
|         :visible.sync="isShowGroups" | ||||
|         width="890px" | ||||
|         customFooter | ||||
|         title="群发范围" | ||||
|         @onConfirm="isShowGroups = false"> | ||||
|         <ai-wrapper> | ||||
| @@ -162,6 +163,9 @@ | ||||
|           <ai-info-item label="添加人" isLine :value="userNames"></ai-info-item> | ||||
|           <ai-info-item label="标签" isLine>{{ info.filterTagsName || '-' }}</ai-info-item> | ||||
|         </ai-wrapper> | ||||
|         <div class="dialog-footer" slot="footer"> | ||||
|           <el-button @click="isShowGroups = false">关闭</el-button> | ||||
|         </div> | ||||
|       </ai-dialog> | ||||
|       <div class="detail-phone" v-if="isShowPhone"> | ||||
|         <div class="mask"></div> | ||||
| @@ -212,7 +216,7 @@ | ||||
|         currIndex: 0, | ||||
|         colConfigs1: [ | ||||
|           { slot: 'user', label: '成员' }, | ||||
|           { prop: 'groupCount', label: '预计送达居民群', align: 'center' } | ||||
|           { prop: 'groupCount', label: '预计发送朋友圈', align: 'center' } | ||||
|         ], | ||||
|         groups: [], | ||||
|         timer: null, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user