整合样式,BUG 59

This commit is contained in:
aixianling
2023-03-08 09:33:10 +08:00
parent 5a43d51436
commit cc748e1c99
7 changed files with 40 additions and 22 deletions

View File

@@ -7,7 +7,7 @@
</el-row>
<el-row type="flex" align="middle" class="notice fill">
<el-button type="primary" icon="iconfont iconNotice">通知公告</el-button>
<div class="notice-content nowarp-text fill">
<div class="notice-content nowrap-text fill">
<el-carousel ref="noticeCarousel" height="32px" direction="vertical" indicator-position="none">
<template v-if="noticeList.length">
<el-carousel-item v-for="(notice,i) in noticeList" :key="i">
@@ -124,10 +124,10 @@
</template>
<template #content>
<div class="unread-message-list">
<li v-for="(msg,i) in msgList" :key="i" class="nowarp-text">
<li v-for="(msg,i) in msgList" :key="i" class="nowrap-text">
<div class="list-type">&nbsp;</div>
<div style="width: calc(100% - 16px)">
<p class="nowarp-text">{{ msg.content }}</p>
<p class="nowrap-text">{{ msg.content }}</p>
<span style="color: #26f" v-text="`[${msg.title}]`"/><span style="color:#999" v-text="msg.receiveTime"/>
</div>
</li>