|
@@ -296,8 +296,15 @@
|
|
|
path: 'pages/index/index',
|
|
|
}
|
|
|
},
|
|
|
+ onUnload() {
|
|
|
+ this.clearIntervalTimer()
|
|
|
+ },
|
|
|
methods: {
|
|
|
-
|
|
|
+ clearIntervalTimer() {
|
|
|
+ if (this.time == null) return
|
|
|
+ clearInterval(this.time)
|
|
|
+ this.time = null
|
|
|
+ },
|
|
|
init() {
|
|
|
|
|
|
this.loadModelList()
|
|
@@ -485,11 +492,11 @@
|
|
|
} else {
|
|
|
this.isOverdueShow = false
|
|
|
}
|
|
|
- // if(!this.time){
|
|
|
- // this.time = setInterval(()=>{
|
|
|
- // this.loadCarDetail(car_sn)
|
|
|
- // },5000)
|
|
|
- // }
|
|
|
+ if(!this.time){
|
|
|
+ this.time = setInterval(()=>{
|
|
|
+ this.loadCarDetail(car_sn)
|
|
|
+ },5000)
|
|
|
+ }
|
|
|
} else {
|
|
|
// common.simpleToast(resp.data.msg);
|
|
|
}
|