forked from zhongyuanhaiju/uniapp
【修复】详情
This commit is contained in:
parent
0a99f8c817
commit
5931f2021d
|
|
@ -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(){
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
// 计算商家佣金
|
||||
|
|
|
|||
Loading…
Reference in New Issue