|
@@ -325,17 +325,17 @@ export default {
|
325
|
325
|
this.timerID = setInterval(() => {
|
326
|
326
|
this.updateTime()
|
327
|
327
|
}, 1000);
|
328
|
|
- this.newTimes = setInterval(() => {
|
329
|
|
- this.reload()
|
330
|
|
- }, 1000 * 60 * 30);
|
|
328
|
+ // this.newTimes = setInterval(() => {
|
|
329
|
+ // this.reload()
|
|
330
|
+ // }, 1000 * 60 * 30);
|
331
|
331
|
},
|
332
|
332
|
beforeDestroy(){
|
333
|
333
|
clearInterval(this.timer); // 清除定时器
|
334
|
334
|
this.timer = null
|
335
|
335
|
clearInterval(this.timerID);
|
336
|
336
|
this.timerID = null; // 清除定时器
|
337
|
|
- clearInterval(this.newTimes); // 清除定时器
|
338
|
|
- this.newTimes = null
|
|
337
|
+ // clearInterval(this.newTimes); // 清除定时器
|
|
338
|
+ // this.newTimes = null
|
339
|
339
|
let unObj = {
|
340
|
340
|
cmd:'queue/unjoin',
|
341
|
341
|
data:{type:2}
|