【修复】详情

This commit is contained in:
liqianjin 2023-04-21 18:30:12 +08:00
parent 0a99f8c817
commit 5931f2021d
2 changed files with 16 additions and 5 deletions

View File

@ -727,8 +727,19 @@ export default {
},
// -
promiseRegisterShow(){
this.request_type = 'register';
this.$refs.registerPopup.open()
if (!uni.getStorageSync('source_member')){
uni.showModal({
title: '请扫推广码注册',
mask: true,
duration: 2000,
showCancel: false,
success: function () {
}
});
}else {
this.request_type = 'register';
this.$refs.registerPopup.open()
}
},
// -
promiseRegister(){

View File

@ -97,7 +97,7 @@
<view class="transfer-price">
<view>请输入转售价格</view>
<view>
<input type="number" class="input" v-model="transfer_price" :placeholder="'最高出售价:'+ price_range.max_price" />
<input type="digit" class="input" v-model="transfer_price" :placeholder="'最高出售价:'+ price_range.max_price" />
</view>
</view>
<!-- <view class="transfer-price-tips">转让价格必须大于{{ price_range.min_price }}并且小于等于{{ price_range.max_price }}</view> -->
@ -125,7 +125,7 @@
</view>
<!-- 仓库卖出确认 增加数量选择 -->
<uni-popup ref="warehouseConfirm" type="bottom">
<view class="sku-info" style="height: 22vh;background: white">
<view class="sku-info" style="height: 33vh;background: white">
<view class="header" style="height: 3vh;">
<view class="sku-close iconfont iconclose" @click="closeWarehouseShopConfirm()"></view>
</view>
@ -244,7 +244,7 @@ export default {
this.proposedPrice =(parseFloat(unitPrice) + parseFloat(proposedPrice)).toFixed(2);
this.price_range.min_price = (parseFloat(unitPrice) + parseFloat(minPrice)).toFixed(2);
this.price_range.max_price = (parseFloat(unitPrice) + parseFloat(maxPrice)).toFixed(2);
let service = (this.proposedPrice * (parseFloat(res.data.service_price) / 100)).toFixed(2); //
let service = (this.info.unit_price * (parseFloat(res.data.service_price) / 100)).toFixed(2); //
//
this.service_charge = (service * (parseFloat(res.data.technical_range) / 100)).toFixed(2);
//