c13c0a62 by 任超

style:通知

1 parent 3a556c59
...@@ -7,8 +7,10 @@ ...@@ -7,8 +7,10 @@
7 <div style="margin-right:5px"></div> 7 <div style="margin-right:5px"></div>
8 <div ref="back" class="back"> 8 <div ref="back" class="back">
9 <div ref="text" class="text" @mouseover="mouseOver" @mouseleave="mouseLeave"> 9 <div ref="text" class="text" @mouseover="mouseOver" @mouseleave="mouseLeave">
10 <p v-for="(item, index) in noticeList" :key="index" @click="handleNotice(item)"> 10 <p v-for="(item, index) in noticeList" :key="index">
11 {{ item.noticeTitle }} 11 <span> {{ item.noticeTitle }}</span>
12 <span class="noticePublishTime">{{ item.noticePublishTime }}</span>
13 <el-button type="text" @click="handleNotice(item)" style="color:#F56C6C;font-size: 14px;">[点击查看]</el-button>
12 </p> 14 </p>
13 </div> 15 </div>
14 </div> 16 </div>
...@@ -113,7 +115,6 @@ export default { ...@@ -113,7 +115,6 @@ export default {
113 align-items: center; 115 align-items: center;
114 width: 100%; 116 width: 100%;
115 height: 28px; 117 height: 28px;
116 line-height: 28px;
117 background: rgba(0, 0, 0, 0.1); 118 background: rgba(0, 0, 0, 0.1);
118 119
119 .icon { 120 .icon {
...@@ -141,7 +142,11 @@ export default { ...@@ -141,7 +142,11 @@ export default {
141 display: flex; 142 display: flex;
142 143
143 p { 144 p {
144 margin-right: 10px; 145 margin-right: 80px;
146 display: flex;
147 align-items: center;
148 height: 28px;
149 line-height: 28px;
145 } 150 }
146 } 151 }
147 } 152 }
......