|
@@ -99,7 +99,7 @@ Page({
|
|
},
|
|
},
|
|
picInitUrl:$.store.get("picInitUrl"),
|
|
picInitUrl:$.store.get("picInitUrl"),
|
|
},
|
|
},
|
|
- onHide(){
|
|
|
|
|
|
+ onUnload(){
|
|
clearInterval(refreshTimer);
|
|
clearInterval(refreshTimer);
|
|
refreshTimer=null;
|
|
refreshTimer=null;
|
|
},
|
|
},
|
|
@@ -849,9 +849,9 @@ Page({
|
|
refreshTimer = null;
|
|
refreshTimer = null;
|
|
}
|
|
}
|
|
let refreshTime=$.store.get("autoRefreshTime");
|
|
let refreshTime=$.store.get("autoRefreshTime");
|
|
- refreshTimer = setTimeout(()=>{
|
|
|
|
|
|
+ refreshTimer = setInterval(()=>{
|
|
fn();
|
|
fn();
|
|
- this.autoRefresh(fn);
|
|
|
|
|
|
+ // this.autoRefresh(fn);
|
|
},refreshTime)
|
|
},refreshTime)
|
|
},
|
|
},
|
|
/**
|
|
/**
|
|
@@ -863,10 +863,11 @@ Page({
|
|
this.getDetail(options.md1);
|
|
this.getDetail(options.md1);
|
|
this.autoRefresh(this.getDetail);
|
|
this.autoRefresh(this.getDetail);
|
|
}else{
|
|
}else{
|
|
- options.humidity&&(options.humiditylevel = this.checkLevel(options.humidity,"humidity"));
|
|
|
|
|
|
+ /* options.humidity&&(options.humiditylevel = this.checkLevel(options.humidity,"humidity"));
|
|
options.co2&&(options.co2level = this.checkLevel(options.co2,"co2"));
|
|
options.co2&&(options.co2level = this.checkLevel(options.co2,"co2"));
|
|
options.pm25&&(options.pm25level = this.checkLevel(options.pm25,"pm25"));
|
|
options.pm25&&(options.pm25level = this.checkLevel(options.pm25,"pm25"));
|
|
options.hcho&&(options.hcholevel = this.checkLevel(options.hcho,"hcho"));
|
|
options.hcho&&(options.hcholevel = this.checkLevel(options.hcho,"hcho"));
|
|
|
|
+ */
|
|
options.isPassengerPassShow&&(options.isPassengerPassShow=JSON.parse(options.isPassengerPassShow));
|
|
options.isPassengerPassShow&&(options.isPassengerPassShow=JSON.parse(options.isPassengerPassShow));
|
|
// if(typeof options.isPassengerPass==="undefined"){
|
|
// if(typeof options.isPassengerPass==="undefined"){
|
|
// options.isPassengerPassShow=false;
|
|
// options.isPassengerPassShow=false;
|
|
@@ -882,6 +883,7 @@ Page({
|
|
this.setData({singleOffice:true})
|
|
this.setData({singleOffice:true})
|
|
}
|
|
}
|
|
this.checkPower();
|
|
this.checkPower();
|
|
|
|
+ this.getDetail();
|
|
this.autoRefresh(this.getDetail);
|
|
this.autoRefresh(this.getDetail);
|
|
})
|
|
})
|
|
}
|
|
}
|