Commit b6f2bd91 authored by 黄奎's avatar 黄奎
parents 52e408cb be2bdd90
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
isDesc: false, isDesc: false,
descMin: 0, descMin: 0,
descSecond: 0, descSecond: 0,
descHour:0,
fylxList: [], fylxList: [],
isShowId:-1, isShowId:-1,
checkValue: '', checkValue: '',
...@@ -176,7 +177,6 @@ ...@@ -176,7 +177,6 @@
OrderSource: 8 OrderSource: 8
}, res => { }, res => {
if(res.data.resultCode == 1) { if(res.data.resultCode == 1) {
console.log(res.data.data)
if(Object.keys(res.data.data).length == 0) { if(Object.keys(res.data.data).length == 0) {
if(Type == 2) { if(Type == 2) {
this.getCodeUrl(obj) this.getCodeUrl(obj)
...@@ -295,12 +295,16 @@ ...@@ -295,12 +295,16 @@
sec = sec > 9 ? sec : '0' + sec sec = sec > 9 ? sec : '0' + sec
// 控制台打印 // 控制台打印
if(this.chaTime>0){ if(this.chaTime>0){
this.descMin = min if(hr>0){
this.descSecond = sec this.descHour = hr;
}
this.descMin = min+this.descHour*60;
this.descSecond = sec;
}else{ }else{
this.isShowPic=false this.isShowPic=false
this.descMin = 0 this.descMin = 0
this.descSecond = 0 this.descSecond = 0
this.descHour = 0
clearInterval(this.timer) clearInterval(this.timer)
} }
this.chaTime-=1000 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