style:首页样式修改
Showing
2 changed files
with
3 additions
and
2 deletions
... | @@ -23,11 +23,11 @@ | ... | @@ -23,11 +23,11 @@ |
23 | <div class="right-situation el-card box-card is-always-shadow"> | 23 | <div class="right-situation el-card box-card is-always-shadow"> |
24 | <div class="right-title">业务列表</div> | 24 | <div class="right-title">业务列表</div> |
25 | <ul> | 25 | <ul> |
26 | <li @click="handleCollection(item)" v-for="(item, index) in busList" :key="index"> | 26 | <li v-for="(item, index) in busList" :key="index"> |
27 | <p> | 27 | <p> |
28 | {{ item.name }} | 28 | {{ item.name }} |
29 | </p> | 29 | </p> |
30 | <p :class="item.select ? 'cactive' : ''"> | 30 | <p :class="item.select ? 'cactive' : ''" @click="handleCollection(item)"> |
31 | <i class="el-icon-star-off" :class="item.select ? 'cactive' : ''"></i> | 31 | <i class="el-icon-star-off" :class="item.select ? 'cactive' : ''"></i> |
32 | </p> | 32 | </p> |
33 | </li> | 33 | </li> | ... | ... |
-
Please register or sign in to post a comment