diff --git a/packages/wxwork/AnnounceResident/AppAnnounceResident/components/Detail.vue b/packages/wxwork/AnnounceResident/AppAnnounceResident/components/Detail.vue
index c5862d48..59445940 100644
--- a/packages/wxwork/AnnounceResident/AppAnnounceResident/components/Detail.vue
+++ b/packages/wxwork/AnnounceResident/AppAnnounceResident/components/Detail.vue
@@ -149,22 +149,26 @@
-
-
-
- {{ info.sendScope === '0' ? '全部' : '按条件筛选的' }}
- {{ info.groupList.length }}
- 个居民
-
-
-
- {{ info.filterTagsName || '-' }}
- {{ info.excludeFilterTagsName || '-' }}
- {{ mapGender(info.gender) }}
- {{ info.addEndTime + '-' + info.addFromTime }}
-
+
+
+
+ {{ info.sendScope === '0' ? '全部' : '按条件筛选的' }}
+ {{ info.groupList.length }}
+ 个居民
+
+
+
+ {{ info.filterTagsName || '-' }}
+ {{ info.excludeFilterTagsName || '-' }}
+ {{ mapGender(info.gender) }}
+ {{ info.addEndTime + '-' + info.addFromTime }}
+
+
diff --git a/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Add.vue b/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Add.vue
index 77319c0a..5f896c32 100644
--- a/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Add.vue
+++ b/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Add.vue
@@ -53,11 +53,11 @@
-
消息预计送达居民群数:
+
消息预计可见居民数:
{{ groupLen }}
+ content="将由指定人员发送给TA添加的且符合所有筛选条件的居民,当多个人员添加同一个居民时,该居民只可看见第1个完成发表的人员的朋友圈">
@@ -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)
}
},
diff --git a/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Detail.vue b/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Detail.vue
index 5a68c6b9..9715a8dc 100644
--- a/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Detail.vue
+++ b/packages/wxwork/AnnounceWeChat/AppAnnounceWeChat/components/Detail.vue
@@ -149,19 +149,23 @@
-
-
-
- {{ info.sendScope === '0' ? '全部' : '按条件筛选的' }}
- {{ info.executorList.length }}
- 个居民
-
-
-
- {{ info.filterTagsName || '-' }}
-
+
+
+
+ {{ info.sendScope === '0' ? '全部' : '按条件筛选的' }}
+ {{ info.executorList.length }}
+ 个居民
+
+
+
+ {{ info.filterTagsName || '-' }}
+
+
@@ -212,7 +216,7 @@
currIndex: 0,
colConfigs1: [
{ slot: 'user', label: '成员' },
- { prop: 'groupCount', label: '预计送达居民群', align: 'center' }
+ { prop: 'groupCount', label: '预计发送朋友圈', align: 'center' }
],
groups: [],
timer: null,