调整消息通知页面的样式
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
<a-list-item :key="index" v-for="(record, index) in announcement1">
|
<a-list-item :key="index" v-for="(record, index) in announcement1">
|
||||||
<div style="margin-left: 5%;width: 80%">
|
<div style="margin-left: 5%;width: 80%">
|
||||||
<p><a @click="showAnnouncement(record)">{{ record.msgTitle }}</a></p>
|
<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>
|
</div>
|
||||||
</a-list-item>
|
</a-list-item>
|
||||||
<div style="margin-top: 5px;text-align: center">
|
<div style="margin-top: 5px;text-align: center">
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
:bodyStyle ="bodyStyle"
|
:bodyStyle ="bodyStyle"
|
||||||
:switchFullscreen="switchFullscreen"
|
:switchFullscreen="switchFullscreen"
|
||||||
@cancel="handleCancel"
|
@cancel="handleCancel"
|
||||||
|
style="top:15%;height: 60%;"
|
||||||
>
|
>
|
||||||
<template slot="footer">
|
<template slot="footer">
|
||||||
<a-button key="back" @click="handleCancel">关闭</a-button>
|
<a-button key="back" @click="handleCancel">关闭</a-button>
|
||||||
@@ -13,6 +14,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<a-card class="daily-article" :loading="loading">
|
<a-card class="daily-article" :loading="loading">
|
||||||
<span style="font-size:18px;">{{record.msgTitle}}</span>
|
<span style="font-size:18px;">{{record.msgTitle}}</span>
|
||||||
|
<span style="font-size:14px; padding-left:30px; color:grey">通知日期:{{record.createTimeStr}}</span>
|
||||||
<a-divider />
|
<a-divider />
|
||||||
<span v-html="record.msgContent" class="article-content"></span>
|
<span v-html="record.msgContent" class="article-content"></span>
|
||||||
</a-card>
|
</a-card>
|
||||||
|
|||||||
@@ -25,14 +25,12 @@
|
|||||||
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
||||||
<a-button type="primary" @click="searchQuery">查询</a-button>
|
<a-button type="primary" @click="searchQuery">查询</a-button>
|
||||||
<a-button @click="searchReset" style="margin-left: 8px">重置</a-button>
|
<a-button @click="searchReset" style="margin-left: 8px">重置</a-button>
|
||||||
|
<a-button type="primary" @click="readAll" style="margin-left: 8px" icon="book">全部标注已读</a-button>
|
||||||
</span>
|
</span>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</a-form>
|
</a-form>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-operator">
|
|
||||||
<a-button type="primary" @click="readAll" icon="book">全部标注已读</a-button>
|
|
||||||
</div>
|
|
||||||
<div style="margin-top: 5px">
|
<div style="margin-top: 5px">
|
||||||
<a-table
|
<a-table
|
||||||
ref="table"
|
ref="table"
|
||||||
@@ -96,7 +94,7 @@
|
|||||||
width: 80
|
width: 80
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '时间',
|
title: '通知日期',
|
||||||
dataIndex: 'createTimeStr',
|
dataIndex: 'createTimeStr',
|
||||||
width: 90
|
width: 90
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user