-
消息预计送达居民群数:
-
{{ form.filterCriteria.length }}
+
{{ groupLen }}
@@ -157,57 +159,7 @@
-

-

-
-
-
-
-
![]()
-
-
-
-
-
-
![]()
-
-
-
-
![]()
-
-
-
-
-
-
-
{{ item.name }}
-
{{ item.fileSizeStr }}
-
-

-
-
-
{{ item.linkTitle }}
-
-
{{ item.linkDesc }}
-
![]()
-
-
-
-
{{ 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()
}
});