|
@@ -34,7 +34,7 @@
|
|
|
<ul v-for="(item, index) in rightTagsList"
|
|
|
:key="index"
|
|
|
class="symptomPushTagList symptomPushOperationPool"
|
|
|
- :class="index === 1&&item.id ? 'symptomPushOperationPoolPush':'' "
|
|
|
+ :class="{symptomPushOperationPoolPush:index === 1, hasSymptomPush: index === 1&&item.id} "
|
|
|
:style="currentSelectIndex === index?styles:null"
|
|
|
@click="SelectList(index)"
|
|
|
>
|
|
@@ -301,6 +301,9 @@ export default {
|
|
|
.symptomPushOperationPoolPush {
|
|
|
border: 1px dashed @icssBorder;
|
|
|
}
|
|
|
+ .hasSymptomPush {
|
|
|
+ background: #abcdef;
|
|
|
+ }
|
|
|
.symptomPushTagItem {
|
|
|
position: relative;
|
|
|
line-height: 30px;
|