Fix:4319 【商城小程序】首页搜索店铺-店铺商品展示区域:开启了价格面议属性的商品没有显示为“价格面议”

This commit is contained in:
linxi
2025-11-04 17:20:22 +08:00
parent 689d63e402
commit 33543f99d7
+11 -3
View File
@@ -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>