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