Fix:4319 【商城小程序】首页搜索店铺-店铺商品展示区域:开启了价格面议属性的商品没有显示为“价格面议”
This commit is contained in:
@@ -140,9 +140,17 @@
|
|||||||
@click="goGoodsCon(good.productId)"
|
@click="goGoodsCon(good.productId)"
|
||||||
>
|
>
|
||||||
<image :src="good.productImage" class="img" />
|
<image :src="good.productImage" class="img" />
|
||||||
<view class="price">
|
<view class="price" style="width: fit-content;">
|
||||||
<text class="txt">¥</text>
|
<text v-if="good.isNegotiable !== 1" class="txt">¥</text>
|
||||||
{{ force2Decimal(good.productPrice) }}
|
<text v-if="good.isNegotiable !== 1" class="">
|
||||||
|
{{ force2Decimal(good.productPrice) }}
|
||||||
|
</text>
|
||||||
|
<text
|
||||||
|
v-if="good.isNegotiable === 1"
|
||||||
|
class="v12-primary-text v12-font-28 v12-font-weight"
|
||||||
|
>
|
||||||
|
价格面议
|
||||||
|
</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
Reference in New Issue
Block a user