hengmei-two/App.vue

38 lines
1.0 KiB
Vue
Raw Normal View History

2021-08-19 06:40:59 +00:00
<script>
import toolAll from '@/jsFile/tools.js';
export default {
onLaunch: function() {
2021-11-02 10:23:53 +00:00
toolAll.tools.clearClog();//去除体验版和正式版的所有输出日志
2021-08-19 06:40:59 +00:00
},
onShow: function() {
2021-11-02 10:23:53 +00:00
toolAll.tools.zhuColorT();
2021-08-19 06:40:59 +00:00
// uni.clearStorageSync()
if(uni.getStorageSync('token')!='') {
2021-11-02 10:23:53 +00:00
toolAll.tools.daoTime();
toolAll.tools.networkStatus();//检查当前网络状态
toolAll.tools.updaX();//检测版本更新
2021-10-11 10:21:06 +00:00
}
2021-08-26 01:50:19 +00:00
setTimeout(()=>{
2021-11-02 10:23:53 +00:00
toolAll.tools.overdue();//查询是否第一次授权
2021-08-26 01:50:19 +00:00
},3000)
2021-12-20 08:02:27 +00:00
toolAll.tools.isVedio();
2021-11-02 10:23:53 +00:00
toolAll.tools.checkQuan();
2021-08-19 06:40:59 +00:00
},
onHide: function() {
2021-11-02 10:23:53 +00:00
toolAll.tools.closeTimer();//清空埋点倒计时
uni.removeStorageSync('isQuan');
uni.removeStorageSync('quanImg');
uni.removeStorageSync('quanId');
2021-11-08 08:38:55 +00:00
uni.removeStorageSync('isQuan');
2022-01-24 05:53:00 +00:00
uni.removeStorageSync('firstTime');
2021-08-19 06:40:59 +00:00
}
};
</script>
<style>
/*每个页面公共css */
@import url("./commons/hengmei.css");
@import url("./commons/animate.min.css");
page {background-color: rgba(244, 244, 244, 1);}
</style>