调整消息通知页面的样式

This commit is contained in:
季圣华
2023-02-26 14:14:55 +08:00
parent 3b4a78fd10
commit 72b37fd3a7
3 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@
<a-list-item :key="index" v-for="(record, index) in announcement1">
<div style="margin-left: 5%;width: 80%">
<p><a @click="showAnnouncement(record)">{{ record.msgTitle }}</a></p>
<p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTimeStr }} 发布</p>
<p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTimeStr }}</p>
</div>
</a-list-item>
<div style="margin-top: 5px;text-align: center">

View File

@@ -6,6 +6,7 @@
:bodyStyle ="bodyStyle"
:switchFullscreen="switchFullscreen"
@cancel="handleCancel"
style="top:15%;height: 60%;"
>
<template slot="footer">
<a-button key="back" @click="handleCancel">关闭</a-button>
@@ -13,6 +14,7 @@
</template>
<a-card class="daily-article" :loading="loading">
<span style="font-size:18px;">{{record.msgTitle}}</span>
<span style="font-size:14px; padding-left:30px; color:grey">通知日期:{{record.createTimeStr}}</span>
<a-divider />
<span v-html="record.msgContent" class="article-content"></span>
</a-card>