hengmei-two/App.vue

57 lines
1.8 KiB
Vue
Raw Normal View History

2021-08-19 06:40:59 +00:00
<script>
import toolAll from '@/jsFile/tools.js';
import requst from '@/jsFile/requst.js';
2021-08-19 06:40:59 +00:00
export default {
globalData:{
outside:true//是否外界进来,默认是
},
2021-08-19 06:40:59 +00:00
onLaunch: function() {
2022-03-04 08:48:40 +00:00
// 检测当前运行环境并缓存域名
toolAll.tools.currentContext();
// 设置电量栏和导航栏的高度
uni.setStorageSync('electric_nav_height',uni.getSystemInfoSync().statusBarHeight + 54);
toolAll.tools.isVedio();
uni.request({
2022-02-17 03:49:34 +00:00
url: `${uni.getStorageSync('hostapi')}index/mini-program-setting`,
method: 'GET',
data: '',
header: {
'Content-Type': 'application/json; charset=UTF-8',
'Authorization': 'Bearer '+uni.getStorageSync('token') || ''
},
success: res => {
// console.log('反的结果===>',res);
if (res.statusCode == 200) {
if (res.data.code == 0) {
uni.setStorageSync('publicColor', res.data.data.mainColor) //#3875F6 #2E8B57
// uni.setStorageSync('publicColor', '#2E8B57') //#3875F6 #2E8B57
}
}
}
})
2021-08-19 06:40:59 +00:00
},
onShow: function() {
if(uni.getStorageSync('token')!='') {
2021-11-02 10:23:53 +00:00
toolAll.tools.networkStatus();//检查当前网络状态
toolAll.tools.updaX();//检测版本更新
toolAll.tools.isLogin();//刷新token
2021-10-11 10:21:06 +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');
2022-03-04 08:48:40 +00:00
uni.removeStorageSync('quanImg'); // 清空优惠券图片缓存
uni.removeStorageSync('quanId'); // 清空优惠券id缓存
uni.removeStorageSync('isVedio'); // 清空是否是视频缓存
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>