e71b77dc by 任超

feat:常办业务

1 parent 015b0236
...@@ -205,7 +205,13 @@ ...@@ -205,7 +205,13 @@
205 padding: 3px; 205 padding: 3px;
206 padding-left: 30px; 206 padding-left: 30px;
207 display: flex; 207 display: flex;
208 align-items: center; 208 flex-direction: column;
209 }
210
211 dt {
212 flex: 1;
213 width: 100%;
214 @include flex-center;
209 } 215 }
210 216
211 p:nth-child(2) { 217 p:nth-child(2) {
......
...@@ -35,10 +35,11 @@ ...@@ -35,10 +35,11 @@
35 <ul> 35 <ul>
36 <li v-for="(item, index) in itemList" :key="index" @click="handleSelectYw(item, ywList)" 36 <li v-for="(item, index) in itemList" :key="index" @click="handleSelectYw(item, ywList)"
37 :class="item.cselect ? 'cactive' : ''"> 37 :class="item.cselect ? 'cactive' : ''">
38 <p> 38 <p v-if="n == 0">
39 {{ item.djywmc }}<br> 39 {{ item.djywmc }}<br>
40 {{ item.nodename }} 40 {{ item.nodename }}
41 </p> 41 </p>
42 <dt v-else>{{ item.nodename }}</dt>
42 43
43 <p :class="item.userCollect == 1 ? 'active' : ''" @click.stop="handleCollection(item)"> 44 <p :class="item.userCollect == 1 ? 'active' : ''" @click.stop="handleCollection(item)">
44 <i class="el-icon-star-off" :class="item.userCollect == 1 ? 'active' : ''"></i> 45 <i class="el-icon-star-off" :class="item.userCollect == 1 ? 'active' : ''"></i>
...@@ -228,7 +229,7 @@ export default { ...@@ -228,7 +229,7 @@ export default {
228 }, 229 },
229 loadView (view) { 230 loadView (view) {
230 return r => require.ensure([], () => r(require(`./components/${view}/${view}.vue`))) 231 return r => require.ensure([], () => r(require(`./components/${view}/${view}.vue`)))
231 }, 232 }
232 } 233 }
233 } 234 }
234 </script> 235 </script>
......