@@ -185,7 +185,7 @@
{{ item.name }}
-
11k
+
{{ item.fileSizeStr }}
@@ -364,6 +364,7 @@
this.instance.post(`/app/appmasssendingtask/queryDetailById?id=${id}`).then(res => {
if (res.code === 0) {
this.form = {
+ ...this.form,
...res.data,
wxGroupsName: '1',
filterCriteria: res.data.filterCriteria.split(',')
@@ -383,7 +384,7 @@
const content = res.data.contents.filter(v => v.msgType === '0')
if (content.length) {
- this.form.content = content[0].content
+ this.$set(this.form, 'content', content[0].content)
}
this.fileList = res.data.contents.filter(v => v.msgType !== '0').map(v => {
@@ -806,9 +807,9 @@
width: max-content;
line-height: 1.3;
padding: 12px;
- text-align: justify;
background: #FFFFFF;
border-radius: 5px;
+ word-break: break-all;
font-size: 14px;
color: #222222;
}
@@ -935,6 +936,7 @@
display: flex;
align-items: center;
min-height: 32px;
+ line-height: 1;
background: #F5F5F5;
border-radius: 2px;
border: 1px solid #D0D4DC;
@@ -942,6 +944,7 @@
& > i {
flex: 1;
height: 100%;
+ line-height: 32px;
padding: 0 12px;
color: #888888;
font-size: 14px;