diff --git a/core/apps/AppMenuManager/list.vue b/core/apps/AppMenuManager/list.vue index 4ef7ec7c..2455b9b9 100644 --- a/core/apps/AppMenuManager/list.vue +++ b/core/apps/AppMenuManager/list.vue @@ -62,6 +62,9 @@ + :tableData="info.attendees" + :colConfigs="colConfigs" + style="margin-top: 12px;" + :isShowPagination="false"> v === '1' ? '已签到' : '未签到' }, + {prop: 'signInStatus', align: 'center', label: '签到', formart: v => v === '1' ? '已签到' : '未签到'}, { slot: 'option', } @@ -249,11 +249,9 @@ export default { params: {id} }).then(res => { if (res?.data) { - this.info = { - ...res.data, - content: this.formatContent(res.data.content || ""), - files: res.data.files || [] - }; + let {files = [], content} = res.data + content = content.replace(/(\r\n)|(\n)/g, "
") + this.info = {...res.data, content, files}; this.searchMeetinguser() } }); diff --git a/project/dv/apps/AppPdDv.vue b/project/dv/apps/AppPdDv.vue index 60deab01..8b8e83a7 100644 --- a/project/dv/apps/AppPdDv.vue +++ b/project/dv/apps/AppPdDv.vue @@ -141,12 +141,9 @@

网格动态

-
- 07/19 09:45 - 书院社区-张三 - 添加居民" - 蓝天白云 - "为好友 +
+ {{ item.createTime }} + {{ item.logDescription }}
@@ -261,7 +258,8 @@ tagInfo: {}, groupNumber: {}, replyPercentage: {}, - groupChatNumber: {} + groupChatNumber: {}, + dynamicList: [] } }, @@ -299,6 +297,11 @@ this.replyPercentage = res.data } }) + this.instance.post(`/app/appUserOperation/list?size=10000`).then(res => { + if (res.code === 0) { + this.dynamicList = res.data.records + } + }) this.instance.post(`/app/wxgroupstatistic/getGroupNumber`).then(res => { if (res.code === 0) { this.groupNumber = res.data['居民群统计'] diff --git a/project/dv/apps/components/DonutChart.vue b/project/dv/apps/components/DonutChart.vue index f9169642..dff376ad 100644 --- a/project/dv/apps/components/DonutChart.vue +++ b/project/dv/apps/components/DonutChart.vue @@ -2,7 +2,7 @@
- {{ ratio }}% + {{ ratio || 0 }}% {{ text }}
diff --git a/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue b/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue index 0019b70e..493149d5 100644 --- a/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue +++ b/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue @@ -1,8 +1,8 @@ @@ -35,7 +35,13 @@ }, mounted () { - + console.log(this.$route) + if (this.$route.params.id) { + this.component = 'Detail' + this.params = { + id: this.$route.params.id + } + } }, methods: { diff --git a/project/sass/apps/Announce/AppAnnounce/components/Add.vue b/project/sass/apps/Announce/AppAnnounce/components/Add.vue index 096af2b9..b047b61f 100644 --- a/project/sass/apps/Announce/AppAnnounce/components/Add.vue +++ b/project/sass/apps/Announce/AppAnnounce/components/Add.vue @@ -23,24 +23,26 @@
-
- - +
+ +
- 请选择 + 请选择
选择

消息预计送达居民群数:

- {{ form.filterCriteria.length }} + {{ groupLen }} @@ -157,57 +159,7 @@
- - -
-
-
-
- -
-
-
-

{{ form.content }}

-
-
-
-
-
- -
-
-
- -
-
- -
-
-
-

{{ item.name }}

-

{{ item.fileSizeStr }}

-
- -
- -
-

{{ item.mpTitle }}

- -
- 小程序 - -
-
-
-
-
-
+
@@ -75,6 +86,22 @@ height: 647px; } + .close { + position: absolute; + top: 0; + right: 0; + z-index: 111; + width: 60px; + height: 60px; + cursor: pointer; + transition: all ease 0.5s; + transform: translate(100%, -50%); + + &:hover { + opacity: 0.7; + } + } + .phone-wrapper { position: absolute; left: 0; @@ -98,7 +125,6 @@ width: 42px; height: 42px; margin-right: 16px; - background: #2891FF; border-radius: 4px; flex-shrink: 1; overflow: hidden; @@ -172,7 +198,7 @@ font-size: 14px; } - img { + & > img { width: 100%; height: 120px; margin-bottom: 8px; diff --git a/project/sass/apps/Announce/AppAnnounceStatistics/AppAnnounceStatistics.vue b/project/sass/apps/Announce/AppAnnounceStatistics/AppAnnounceStatistics.vue index c89eebab..bc17d2f9 100644 --- a/project/sass/apps/Announce/AppAnnounceStatistics/AppAnnounceStatistics.vue +++ b/project/sass/apps/Announce/AppAnnounceStatistics/AppAnnounceStatistics.vue @@ -46,7 +46,7 @@
群发类型:{{$dict.getLabel('mstSendType', item.sendType) || ''}}
- 详情{{item.sendType}} + 详情{{item.sendType}}
@@ -213,7 +213,7 @@ this.getCalendarList(year, month) this.getEffect() this.getDepart() - this.dict.load('mstSendType') + this.dict.load('mstSendType') }, methods: { ...mapActions(['initOpenData', 'transCanvas']), @@ -561,7 +561,7 @@ width: 70px; } .name{ - width: calc(100% - 70px); + width: calc(100% - 70px); } } .item-btn{ diff --git a/project/sass/apps/AppConference/detail.vue b/project/sass/apps/AppConference/detail.vue index be792755..8ae85a22 100644 --- a/project/sass/apps/AppConference/detail.vue +++ b/project/sass/apps/AppConference/detail.vue @@ -255,11 +255,9 @@ export default { params: {id} }).then(res => { if (res?.data) { - this.info = { - ...res.data, - content: this.formatContent(res.data.content || ""), - files: res.data.files || [] - }; + let {files = [], content} = res.data + content = content.replace(/(\r\n)|(\n)/g, "
") + this.info = {...res.data, content, files}; this.searchMeetinguser() } });