初始化
parent
2463729b9e
commit
71f277efbe
|
@ -154,11 +154,11 @@ export default {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
gotoMaintained(customer){
|
async gotoMaintained(customer){
|
||||||
this.pay.subject=customer.sysIntro
|
this.pay.subject=customer.sysIntro
|
||||||
this.pay.traceNo=Math.floor(Math.random() * 900000) + 100000
|
this.pay.traceNo=Math.floor(Math.random() * 900000) + 100000
|
||||||
this.pay.totalAmount=customer.sysNumber
|
this.pay.totalAmount=customer.sysNumber
|
||||||
const url = `http://10.0.2.1:81/pay/alipay/pay?subject=${this.pay.subject}&traceNo=${this.pay.traceNo}&totalAmount=${this.pay.totalAmount}`;
|
const url = `http://10.0.2.1:81/alipay/pay?subject=${this.pay.subject}&traceNo=${this.pay.traceNo}&totalAmount=${this.pay.totalAmount}`;
|
||||||
window.open(url, '_self'); // 如果您想在当前页面加载新 URL,这样是正确的
|
window.open(url, '_self'); // 如果您想在当前页面加载新 URL,这样是正确的
|
||||||
},
|
},
|
||||||
getType(activeNameL){
|
getType(activeNameL){
|
||||||
|
|
Loading…
Reference in New Issue