|
@@ -56,7 +56,7 @@
|
|
|
v-for="(item, index) in subInfo"
|
|
|
:key="index"
|
|
|
>{{ item }}</span>
|
|
|
- <span class="type-tag" :class="productType === 2 ? 'boutique' : 'free'">{{productType === 2 ? '付费精品' : '会员免费' }}</span>
|
|
|
+ <span class="type-tag" v-if="productType" :class="productType === 2 ? 'boutique' : 'free'">{{productType === 2 ? '付费精品' : '会员免费' }}</span>
|
|
|
</div>
|
|
|
<div class="c-f-right flex-r-c">
|
|
|
<slot name="price">
|
|
@@ -237,8 +237,7 @@ export default {
|
|
|
color: #fff;
|
|
|
}
|
|
|
&.boutique{
|
|
|
- border: 0.5px solid #D69E55;
|
|
|
- background: #FAE7CA;
|
|
|
+ background: linear-gradient(270deg, #F1D090 0%, #FAE7CA 100%);
|
|
|
color: #B1700E;
|
|
|
}
|
|
|
}
|