|
@@ -11,7 +11,7 @@
|
|
|
<li v-for="item in notices" :key="item.id">
|
|
|
<div class="one">通知标题:{{ item.msgTitle }}</div>
|
|
|
<div class="two">发送时间:{{ item.createTime }}</div>
|
|
|
- <div class="three">发送人:{{ item.createBy }}</div>
|
|
|
+ <div>发<span class="three">送</span>人:{{ item.createBy }}</div>
|
|
|
<div class="four">
|
|
|
<p class="four1">通知内容:</p>
|
|
|
<p class="four2" v-html="item.msgContent"></p>
|
|
@@ -81,7 +81,7 @@
|
|
|
<li v-for="item in msg" :key="item.id">
|
|
|
<div class="one">消息标题:{{ item.msgTitle }}</div>
|
|
|
<div class="two">消息时间:{{ item.createTime }}</div>
|
|
|
- <div class="three">发送人:{{ item.createBy }}</div>
|
|
|
+ <div>发<span class="three">送</span>人:{{ item.createBy }}</div>
|
|
|
<div class="four">
|
|
|
<p class="four1">消息内容:</p>
|
|
|
<p class="four2" v-html="item.msgContent"></p>
|
|
@@ -652,7 +652,8 @@ export default {
|
|
|
padding-top: 12px;
|
|
|
}
|
|
|
.three {
|
|
|
- padding-left: calc(100vw * (30 / 1920));
|
|
|
+ padding-left: calc(100vw * (6 / 1920));
|
|
|
+ padding-right: calc(100vw * (6 / 1920));
|
|
|
}
|
|
|
.five {
|
|
|
display: flex;
|
|
@@ -757,7 +758,8 @@ export default {
|
|
|
padding-top: 12px;
|
|
|
}
|
|
|
.three {
|
|
|
- padding-left: calc(100vw * (30 / 1920));
|
|
|
+ padding-left: calc(100vw * (6 / 1920));
|
|
|
+ padding-right: calc(100vw * (6 / 1920));
|
|
|
}
|
|
|
.five {
|
|
|
display: flex;
|