|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="monitor-page">
|
|
|
<ul class="monitor-ul">
|
|
|
- <li v-show="showList.length && showList.includes(1)">监控业主一旦发布与“我的订阅”相关的招标动态,会推送业主的招标项目、时间等公告信息。</li>
|
|
|
+ <li :class="{'first-bottom': showList.length && showList.includes(1)}" v-show="showList.length && showList.includes(1)">监控业主一旦发布与“我的订阅”相关的招标动态,会推送业主的招标项目、时间等公告信息。</li>
|
|
|
<li :class="{'border-2': !showList.includes(1)}" v-show="showList.length && showList.includes(2)" @click="$emit('monitorStatus')">查看监控动态</li>
|
|
|
<li v-show="showList.length && showList.includes(3)">
|
|
|
<div class="list-top" @click="monitorList">
|
|
@@ -81,6 +81,9 @@ export default {
|
|
|
font-size: 14px;
|
|
|
color: #686868;
|
|
|
}
|
|
|
+ &.first-bottom{
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
&:last-child{
|
|
|
padding: 12px 0 0;
|
|
|
}
|