|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
* @Author: ch
|
|
|
|
|
* @Date: 2022-07-08 11:46:30
|
|
|
|
|
* @LastEditors: ch
|
|
|
|
|
* @LastEditTime: 2022-07-12 14:29:22
|
|
|
|
|
* @LastEditTime: 2022-07-12 14:44:17
|
|
|
|
|
* @Description: file content
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
@ -34,19 +34,26 @@ const ENV = process.env;
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
payType : 'wxpay',
|
|
|
|
|
payTypeData : [{
|
|
|
|
|
orderInfo : {},
|
|
|
|
|
payOrderNo : this.$route.query.payOrderNo
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed:{
|
|
|
|
|
payTypeData(){
|
|
|
|
|
let data = [{
|
|
|
|
|
label : '微信支付',
|
|
|
|
|
icon : require('@/static/wx.png'),
|
|
|
|
|
value : 'wxpay'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
// if(!WeixinJSBridge){
|
|
|
|
|
data.push({
|
|
|
|
|
label : '支付宝支付',
|
|
|
|
|
icon : require('@/static/ali.png'),
|
|
|
|
|
value : 'alipay'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
orderInfo : {},
|
|
|
|
|
payOrderNo : this.$route.query.payOrderNo
|
|
|
|
|
})
|
|
|
|
|
// }
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async onLoad() {
|
|
|
|
|