Prechádzať zdrojové kódy

Merge branch 'dev/v1.5.75_tsz' of jianyu/page_bigmember_pc into feature/v1.5.75

汤世哲 1 rok pred
rodič
commit
fdbf2a9758
1 zmenil súbory, kde vykonal 4 pridanie a 1 odobranie
  1. 4 1
      src/components/common/Monitor.vue

+ 4 - 1
src/components/common/Monitor.vue

@@ -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;
       }