|
@@ -9,7 +9,7 @@
|
|
|
<text class="list-details-specs">规格:{{item.unit}}</text>
|
|
|
<view class="list-details-specs" v-if="item.productCode!=''&&item.productCode!=null">商品编码:{{item.productCode}}</view>
|
|
|
<view class="list-details-price">
|
|
|
- <view v-if="hasLogin"class="list-price">
|
|
|
+ <view v-if="hasLogin" class="list-price">
|
|
|
<view v-if="userIdentity == 1">
|
|
|
<text v-if="priceLoading" class="price-larger small">正在获取价格...</text>
|
|
|
<text v-else>¥<text class="price-larger">{{item.price?item.price :'0.00'}}</text></text>
|
|
@@ -188,7 +188,7 @@
|
|
|
if (!this.userID) {return false;}
|
|
|
let productIdArr = [];
|
|
|
this.listData.map(item=>{// 0公开价格 1不公开价格 2仅对会员机构公开
|
|
|
- if (item.priceflag != 1){ productIdArr.push(item.pid) }
|
|
|
+ productIdArr.push(item.pid)
|
|
|
})
|
|
|
this.productIds = productIdArr.join(",");
|
|
|
querySearchProductPrice({userId: this.userID,productIds:this.productIds}).then(response =>{
|