Commit b6f2bd91 authored by 黄奎's avatar 黄奎
parents 52e408cb be2bdd90
......@@ -58,6 +58,7 @@
isDesc: false,
descMin: 0,
descSecond: 0,
descHour:0,
fylxList: [],
isShowId:-1,
checkValue: '',
......@@ -176,7 +177,6 @@
OrderSource: 8
}, res => {
if(res.data.resultCode == 1) {
console.log(res.data.data)
if(Object.keys(res.data.data).length == 0) {
if(Type == 2) {
this.getCodeUrl(obj)
......@@ -237,7 +237,7 @@
}
this.apipost('OnlinePay_post_GetCodeUrl', msg, res => {
if(res.data.resultCode == 1) {
if(res.data.resultCode == 1) {
this.payPic = res.data.data.CodeURL
this.lastTime = new Date(res.data.data.ExpireDate)
this.nowDate=new Date(res.data.data.NowDate)
......@@ -295,12 +295,16 @@
sec = sec > 9 ? sec : '0' + sec
// 控制台打印
if(this.chaTime>0){
this.descMin = min
this.descSecond = sec
if(hr>0){
this.descHour = hr;
}
this.descMin = min+this.descHour*60;
this.descSecond = sec;
}else{
this.isShowPic=false
this.descMin = 0
this.descSecond = 0
this.descHour = 0
clearInterval(this.timer)
}
this.chaTime-=1000
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment