🦀️ fix: 修复bug
This commit is contained in:
parent
270353ae7f
commit
efac811246
|
@ -157,11 +157,17 @@
|
||||||
/* 倒计时 */
|
/* 倒计时 */
|
||||||
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
||||||
if (key_expiration_time != 0) {
|
if (key_expiration_time != 0) {
|
||||||
setInterval(() => {
|
const cls = setInterval(() => {
|
||||||
this.outTime = pageOutTime(key_expiration_time);
|
const time = pageOutTime(key_expiration_time);
|
||||||
|
if (time) {
|
||||||
|
this.outTime = time;
|
||||||
|
} else {
|
||||||
|
this.outTime = ['00', '00', '00'];
|
||||||
|
clearInterval(cls);
|
||||||
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
} else {
|
} else {
|
||||||
this.outTime = [];
|
this.outTime = ['00', '00', '00'];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -185,11 +185,17 @@
|
||||||
/* 倒计时 */
|
/* 倒计时 */
|
||||||
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
||||||
if (key_expiration_time != 0) {
|
if (key_expiration_time != 0) {
|
||||||
setInterval(() => {
|
const cls = setInterval(() => {
|
||||||
this.outTime = pageOutTime(key_expiration_time);
|
const time = pageOutTime(key_expiration_time);
|
||||||
|
if (time) {
|
||||||
|
this.outTime = time;
|
||||||
|
} else {
|
||||||
|
this.outTime = ['00', '00', '00'];
|
||||||
|
clearInterval(cls);
|
||||||
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
} else {
|
} else {
|
||||||
this.outTime = [];
|
this.outTime = ['00', '00', '00'];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filters: {
|
filters: {
|
||||||
|
|
|
@ -156,11 +156,17 @@
|
||||||
/* 倒计时 */
|
/* 倒计时 */
|
||||||
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
||||||
if (key_expiration_time != 0) {
|
if (key_expiration_time != 0) {
|
||||||
setInterval(() => {
|
const cls = setInterval(() => {
|
||||||
this.outTime = pageOutTime(key_expiration_time);
|
const time = pageOutTime(key_expiration_time);
|
||||||
|
if (time) {
|
||||||
|
this.outTime = time;
|
||||||
|
} else {
|
||||||
|
this.outTime = ['00', '00', '00'];
|
||||||
|
clearInterval(cls);
|
||||||
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
} else {
|
} else {
|
||||||
this.outTime = [];
|
this.outTime = ['00', '00', '00'];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filters: {
|
filters: {
|
||||||
|
|
|
@ -156,11 +156,17 @@
|
||||||
/* 倒计时 */
|
/* 倒计时 */
|
||||||
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
const key_expiration_time = sessionStorage.getItem('key_expiration_time');
|
||||||
if (key_expiration_time != 0) {
|
if (key_expiration_time != 0) {
|
||||||
setInterval(() => {
|
const cls = setInterval(() => {
|
||||||
this.outTime = pageOutTime(key_expiration_time);
|
const time = pageOutTime(key_expiration_time);
|
||||||
|
if (time) {
|
||||||
|
this.outTime = time;
|
||||||
|
} else {
|
||||||
|
this.outTime = ['00', '00', '00'];
|
||||||
|
clearInterval(cls);
|
||||||
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
} else {
|
} else {
|
||||||
this.outTime = [];
|
this.outTime = ['00', '00', '00'];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue