初始化

master
法外狂徒张三 2024-08-29 18:50:59 +08:00
parent 2463729b9e
commit 71f277efbe
1 changed files with 2 additions and 2 deletions

View File

@ -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){