1.修改待支付选择支付方式

yj-dev
杨杰 2 years ago
parent 5641584485
commit b1e733c01c
  1. 16
      App.vue
  2. 1
      manifest.json
  3. 8
      pages/user/agentCoupons/agentCoupons.vue
  4. 1
      subPages/recharge-pay/recharge-pay.vue
  5. 10
      subPages/rechargeDetails/rechargeDetails.vue
  6. 5
      subPages/unionPay-orderList/unionPay-orderList.vue

@ -5,15 +5,15 @@
// brestUrl: 'http://192.168.3.4:9302/brest',
// imgUrl: 'https://192.168.3.4:9301/filesystem/',
//
// url: 'https://hsg.dctpay.com/crest',
// imgUrl: 'https://hsg.dctpay.com/filesystem/',
// brestUrl : 'https://hsg.dctpay.com/brest',
// imageWxImg:'https://hsg.dctpay.com/filesystem/wxApplets/',
url: 'https://hsg.dctpay.com/crest',
imgUrl: 'https://hsg.dctpay.com/filesystem/',
brestUrl : 'https://hsg.dctpay.com/brest',
imageWxImg:'https://hsg.dctpay.com/filesystem/wxApplets/',
//
url: 'https://hsgcs.dctpay.com/crest',
brestUrl : 'https://hsgcs.dctpay.com/brest',
imgUrl: 'https://hsgcs.dctpay.com/filesystem/',
imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/',
// url: 'https://hsgcs.dctpay.com/crest',
// brestUrl : 'https://hsgcs.dctpay.com/brest',
// imgUrl: 'https://hsgcs.dctpay.com/filesystem/',
// imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/',
userInfo: "",
brestUserInfo : '',
openId: '',

@ -61,7 +61,6 @@
"quickapp" : {},
/* */
"mp-weixin" : {
/* */
"appid" : "wx8d49e2f83025229d",
"setting" : {
"urlCheck" : true

@ -43,7 +43,7 @@
<!-- / -->
<view :hidden="userFeedbackHidden" class="popup_content">
<view class="popup_title">填写信息</view>
<input class="width90 pop_input font14 mart20 marb10" maxlength="11" v-model="feedPhone" placeholder="输入手机号"
<input class="width85 pop_input font14 mart20 marb10" maxlength="11" v-model="feedPhone" placeholder="输入手机号"
type="number" v-if="couponSource == 4" />
<view class="popup_textarea_item">
<textarea class="popup_textarea" placeholder='请填写您的备注信息...' v-model="feedbackContent">
@ -382,8 +382,10 @@
.pop_input {
// border-bottom: 1px solid #F1F1F1;
height: 50rpx;
line-height: 50rpx;
border: 1px solid #f1f1f1;
margin-left: 5%;
height: 60rpx;
line-height: 60rpx;
padding-left: 20rpx;
}

@ -88,6 +88,7 @@
tongCardPrice: 0,
payPrice: '', //
oilPirce: 0, //
paytype:'', //
paytypeList: [], //
rechargeDes: '', //
};

@ -81,15 +81,15 @@
优惠抵扣 :
</view>
<view class="right">
{{recinfo.discountDeductionPrice}}
{{recinfo.discountDeductionPrice == null ? '0': recinfo.discountDeductionPrice}}
</view>
</view>
<view class="row">
<view class="row" v-if="recinfo.outRechargePrice.payPrice">
<view class="left">
应付金额 :
</view>
<view class="right">
{{recinfo.outRechargePrice.payPrice}}
{{recinfo.outRechargePrice.payPrice == null ? '0': recinfo.outRechargePrice.payPrice}}
</view>
</view>
<view class="row" v-if="recinfo.integralDeductionPrice">
@ -97,7 +97,7 @@
积分抵扣 :
</view>
<view class="right">
{{recinfo.integralDeductionPrice}}
{{recinfo.integralDeductionPrice == null ? '0': recinfo.integralDeductionPrice}}
</view>
</view>
<view class="row">
@ -105,7 +105,7 @@
实付金额 :
</view>
<view class="right">
{{recinfo.payRealPrice}}
{{recinfo.payRealPrice == null ? '0': recinfo.payRealPrice}}
</view>
</view>
<view class="row">

@ -34,9 +34,12 @@
</view>
</view>
<view class="width30 flright fotrt fcor666 font15 fotrt">
<view class="font16 fontwig6 text1 fcor333">
<view class="font16 fontwig6 text1 fcor333" v-if="row.payRealPrice">
{{row.payRealPrice}}
</view>
<view class="font16 fontwig6 text1 fcor333" v-else>
0
</view>
<view class="fotrt font15 text1 fcor999 mart5">{{typeText[row.payStatus]}}</view>
</view>
</view>

Loading…
Cancel
Save