|
@@ -12,6 +12,7 @@
|
|
<text class="txt big">{{retailPrice}}</text>
|
|
<text class="txt big">{{retailPrice}}</text>
|
|
<text class="txt big">{{smallMoney== '0'?'.00':smallMoney}}</text>
|
|
<text class="txt big">{{smallMoney== '0'?'.00':smallMoney}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="p-price-none" v-if="product.actStatus == 1">¥{{product.price1.toFixed(2)}}</view>
|
|
<view class="p-minBuy">起订量:<text class="min-text">{{minBuyNumber}}</text></view>
|
|
<view class="p-minBuy">起订量:<text class="min-text">{{minBuyNumber}}</text></view>
|
|
</view>
|
|
</view>
|
|
<view class="wrap-ladder" v-else>
|
|
<view class="wrap-ladder" v-else>
|
|
@@ -48,6 +49,7 @@
|
|
<text class="txt big">{{retailPrice}}</text>
|
|
<text class="txt big">{{retailPrice}}</text>
|
|
<text class="txt big">{{smallMoney== '0'?'.00':smallMoney}}</text>
|
|
<text class="txt big">{{smallMoney== '0'?'.00':smallMoney}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="p-price-none" v-if="product.actStatus == 1">¥{{product.price1.toFixed(2)}}</view>
|
|
<view class="p-minBuy">起订量:<text class="min-text">{{minBuyNumber}}</text></view>
|
|
<view class="p-minBuy">起订量:<text class="min-text">{{minBuyNumber}}</text></view>
|
|
</view>
|
|
</view>
|
|
<view class="wrap-ladder" v-else>
|
|
<view class="wrap-ladder" v-else>
|
|
@@ -80,6 +82,7 @@
|
|
<text class="txt big">{{retailPrice}}</text>
|
|
<text class="txt big">{{retailPrice}}</text>
|
|
<text class="txt big">{{smallMoney== '0'?'.00':smallMoney}}</text>
|
|
<text class="txt big">{{smallMoney== '0'?'.00':smallMoney}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="p-price-none" v-if="product.actStatus == 1">¥{{product.price1.toFixed(2)}}</view>
|
|
<view class="p-minBuy">起订量:<text class="min-text">{{minBuyNumber}}</text></view>
|
|
<view class="p-minBuy">起订量:<text class="min-text">{{minBuyNumber}}</text></view>
|
|
</view>
|
|
</view>
|
|
<view class="wrap-ladder" v-else>
|
|
<view class="wrap-ladder" v-else>
|
|
@@ -138,7 +141,10 @@
|
|
methods:{
|
|
methods:{
|
|
goUpgradeApply(){
|
|
goUpgradeApply(){
|
|
this.$api.navigateTo('/pages/login/apply')
|
|
this.$api.navigateTo('/pages/login/apply')
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ toFixedFn(text){//处理小数点后两位数
|
|
|
|
+ return Number(text).toFixed(2);
|
|
|
|
+ },
|
|
},
|
|
},
|
|
|
|
|
|
}
|
|
}
|