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