b3069277 by renchao@pashanhoo.com

style:登记薄模板

1 parent 15567ef3
1 <!-- 1 <!--
2 * @Description: workFrame左侧菜单列表-普通 2 * @Description: workFrame左侧菜单列表-普通
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-26 15:32:20 4 * @LastEditTime: 2023-10-08 10:30:24
5 --> 5 -->
6 <template> 6 <template>
7 <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> 7 <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }">
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
26 v-for="(item, index) in supplementarylist" 26 v-for="(item, index) in supplementarylist"
27 :index="index.toString()" 27 :index="index.toString()"
28 :key="index"> 28 :key="index">
29 <p class="dot" v-if="item.isSave == '0'"></p>
29 <div> 30 <div>
30 <p v-if="item.operate=='D'">{{ item.qllxmc }} <span class="tpcolor">(删除)</span></p> 31 <p v-if="item.operate=='D'">{{ item.qllxmc }} <span class="tpcolor">(删除)</span></p>
31 <p v-else>{{ item.qllxmc }} <span class="tpcolor">({{ item.operate=="U"?"编辑":"新增" }})</span></p> 32 <p v-else>{{ item.qllxmc }} <span class="tpcolor">({{ item.operate=="U"?"编辑":"新增" }})</span></p>
...@@ -155,12 +156,12 @@ ...@@ -155,12 +156,12 @@
155 that.activeIndex = sessionStorage.getItem('keyPath') 156 that.activeIndex = sessionStorage.getItem('keyPath')
156 } else { 157 } else {
157 that.loadBdcdylist() 158 that.loadBdcdylist()
158 this.activeIndex = "-1"; 159 that.activeIndex = "-1";
159 // that.unitClick(0) 160 // that.unitClick(0)
160 // that.activeIndex = "0" 161 // that.activeIndex = "0"
161 } 162 }
162 } else { 163 } else {
163 this.loadBdcdylist() 164 // this.loadBdcdylist()
164 } 165 }
165 } 166 }
166 }) 167 })
......