Authored by zhangwenxue

fix(商品详情): fix #6180

6108【ufo前端】【闲鱼合作】没有出售的库存的商品详情页面,商品价格展示¥,应该什么也不展示
... ... @@ -8,7 +8,10 @@
<square-img :src="imageList[0] && imageList[0].image_url" :width="70" :height="70"/>
</div>
<div class="product">
<div>¥{{product.least_price||''}}</div>
<div>
<template v-if="product.least_price >= 0"> ¥{{product.least_price}}</template>
<template v-else>&nbsp;</template>
</div>
<div>
{{goods_name}}
<template v-if="goods_name && sizeName">,</template>
... ...
... ... @@ -24,7 +24,10 @@
</div>
<div class="info">
<div class="info-price">¥{{productDetail.least_price||''}}</div>
<div class="info-price">
<template v-if="productDetail.least_price >= 0"> ¥{{productDetail.least_price}}</template>
<template v-else>&nbsp;</template>
</div>
<div class="info-name">{{productDetail.product_name}}</div>
</div>
<a class="banner" v-if="resource" :href="resource.url">
... ...