浏览代码

bug修复

郭宇琦 2 天之前
父节点
当前提交
62e34298cc
共有 1 个文件被更改,包括 13 次插入6 次删除
  1. 13 6
      pages/index/index.vue

+ 13 - 6
pages/index/index.vue

@@ -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);
 					}