|
@@ -162,6 +162,11 @@
|
|
|
this.btnColor='#034582'
|
|
|
this.buttonText = '生成个人网银支付链接'
|
|
|
break
|
|
|
+ case '3':
|
|
|
+ this.payWay = 'UNIONPAY'
|
|
|
+ this.btnColor='#034582'
|
|
|
+ this.buttonText = '去转账'
|
|
|
+ break
|
|
|
}
|
|
|
this.GetPayOrderInfo()
|
|
|
},
|
|
@@ -190,9 +195,25 @@
|
|
|
case '2':
|
|
|
this.BuildCatenate()
|
|
|
break
|
|
|
+ case '3':
|
|
|
+ this.LargePayment()
|
|
|
+ break
|
|
|
}
|
|
|
},
|
|
|
- BuildCatenate(){
|
|
|
+ LargePayment(){// 大额银联
|
|
|
+ if(this.payAmount == 0){
|
|
|
+ this.$util.msg('请输入本次支付的金额',2000)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if(this.payAmount <=10){
|
|
|
+ this.$util.msg('网银支付的金额必须大于¥10.00',2000)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.PayService.PayOrderPayLink({unpaidAmount:this.payAmount,orderId:this.orderId,payType:this.payType}).then(response =>{
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
+ BuildCatenate(){// 企业网银 个人网银
|
|
|
if(this.payAmount == 0){
|
|
|
this.$util.msg('请输入本次支付的金额',2000)
|
|
|
return
|
|
@@ -206,7 +227,7 @@
|
|
|
this.isShowTip = true
|
|
|
})
|
|
|
},
|
|
|
- MiniWxPayFor(){
|
|
|
+ MiniWxPayFor(){// 微信支付
|
|
|
authorize.getCode('weixin').then(wechatcode =>{
|
|
|
if(this.payAmount > 5000){
|
|
|
this.$util.modal('','本次支付金额已超出微信支付限额,请输入小于5千的金额进行支付','知道了','',false,() =>{})
|