1.修改话费显示问题

yj-dev
杨杰 2 years ago
parent 21858de5b4
commit 5bf0d67123
  1. 4
      .hbuilderx/launch.json
  2. 4
      subPages/rechargeDetails/rechargeDetails.vue
  3. 9
      subPages/unionComfirmation/unionComfirmation.vue

@ -2,6 +2,10 @@
// launchtypelocalremote, localremote
"version": "0.0",
"configurations": [{
"app-plus" :
{
"launchtype" : "remote"
},
"default" :
{
"launchtype" : "remote"

@ -78,7 +78,7 @@
</view>
<view class="row" v-if="recinfo.discountDeductionPrice">
<view class="left">
优惠券金额 :
优惠抵扣 :
</view>
<view class="right">
{{recinfo.discountDeductionPrice}}
@ -94,7 +94,7 @@
</view>
<view class="row" v-if="recinfo.integralDeductionPrice">
<view class="left">
积分抵扣金额 :
积分抵扣 :
</view>
<view class="right">
{{recinfo.integralDeductionPrice}}

@ -618,6 +618,9 @@
}
},
submitHandle(e) {
uni.showLoading({
title: '支付中...'
})
this.PaymentPassword = e.value;
if (this.PaymentPassword == '') {
uni.showToast({
@ -625,11 +628,9 @@
icon: 'none',
duration: 2000
})
uni.hideLoading();
return;
}
uni.showLoading({
title: '支付中...'
})
if (this.payPrice == 0) {
let params = {
"memDiscountId": this.memDiscountId,
@ -639,8 +640,8 @@
"password": this.PaymentPassword
}
addOrderPay(params).then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
uni.hideLoading();
this.orderId = res.return_data.id;
uni.reLaunch({
url: '../Phone-recharge-details/Phone-recharge-details?id=' +

Loading…
Cancel
Save