style:删除结算页代码

This commit is contained in:
wangsongsole 2022-11-03 17:46:11 +08:00
parent f2c8a34a95
commit c240de4096
1 changed files with 3 additions and 8 deletions

View File

@ -126,15 +126,10 @@
if (isWx()) {
this.getweixin();
}
var searchHref = window.location.search.replace('?', '');
var params = searchHref.split('&');
var returnParam = {};
params.forEach(function (param) {
var paramSplit = param.split('=');
returnParam[paramSplit[0]] = paramSplit[1];
});
this.orderNumber = this.getQueryString('orderNumber')
this.payType = Number(this.getQueryString('payType')) === 5 ? 1 : 2
const payType = Number(this.getQueryString('payType'))
payType && this.payType === 5 ? 1 : 2
},
methods: {