|
@@ -4,7 +4,7 @@
|
|
|
<JCell class="more-filter-item" title="金额">
|
|
|
<template #title v-if="disabledFilters">
|
|
|
<span class="mr-6">金额</span>
|
|
|
- <van-tag plain round type="danger" @click="onNoPower">开通</van-tag>
|
|
|
+ <span class="v-vip-icon" @click="onNoPower"></span>
|
|
|
</template>
|
|
|
<template #label>
|
|
|
<MoneyGroupCustomInput
|
|
@@ -25,7 +25,7 @@
|
|
|
>
|
|
|
<template #title v-if="disabledFilters">
|
|
|
<span class="mr-6">采购单位类型</span>
|
|
|
- <van-tag plain round type="danger">开通</van-tag>
|
|
|
+ <span class="v-vip-icon"></span>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<van-cell
|
|
@@ -39,7 +39,7 @@
|
|
|
>
|
|
|
<template #title v-if="disabledFilters">
|
|
|
<span class="mr-6">关键词</span>
|
|
|
- <van-tag plain round type="danger">开通</van-tag>
|
|
|
+ <span class="v-vip-icon"></span>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<van-cell
|
|
@@ -53,13 +53,13 @@
|
|
|
>
|
|
|
<template #title v-if="disabledFilters">
|
|
|
<span class="mr-6">公告类型</span>
|
|
|
- <van-tag plain round type="danger">开通</van-tag>
|
|
|
+ <span class="v-vip-icon"></span>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<JCell class="more-filter-item" title="附件">
|
|
|
<template #title v-if="disabledFilters">
|
|
|
<span class="mr-6">附件</span>
|
|
|
- <van-tag plain round type="danger" @click="onNoPower">开通</van-tag>
|
|
|
+ <span class="v-vip-icon" @click="onNoPower"></span>
|
|
|
</template>
|
|
|
<template #label>
|
|
|
<CheckboxGroup
|
|
@@ -73,7 +73,7 @@
|
|
|
<JCell class="more-filter-item" title="查看状态">
|
|
|
<template #title v-if="disabledFilters">
|
|
|
<span class="mr-6">查看状态</span>
|
|
|
- <van-tag plain round type="danger" @click="onNoPower">开通</van-tag>
|
|
|
+ <span class="v-vip-icon" @click="onNoPower"></span>
|
|
|
</template>
|
|
|
<template #label>
|
|
|
<CheckboxGroup
|
|
@@ -621,4 +621,13 @@ export default {
|
|
|
border-bottom: 1px solid $border_color_3;
|
|
|
}
|
|
|
}
|
|
|
+.v-vip-icon{
|
|
|
+ display: inline-block;
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ margin-left: 2px;
|
|
|
+ background: url(@/assets/image/icon/vip/v_icon.png) no-repeat center;
|
|
|
+ background-size: contain;
|
|
|
+ margin-bottom: 2px;
|
|
|
+}
|
|
|
</style>
|