57 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
| <script>
 | |
| 	import toolAll from '@/jsFile/tools.js';
 | |
| 	import requst from '@/jsFile/requst.js';
 | |
| 	export default {
 | |
| 		onLaunch: function() {
 | |
| 			// 检测当前运行环境并缓存域名
 | |
| 			toolAll.tools.currentContext();
 | |
| 			// 设置电量栏和导航栏的高度
 | |
| 			uni.setStorageSync('electric_nav_height',uni.getSystemInfoSync().statusBarHeight + 54);
 | |
| 			
 | |
| 			toolAll.tools.isVedio();
 | |
| 			uni.request({
 | |
| 				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
 | |
| 						}
 | |
| 					}
 | |
| 				}
 | |
| 			})
 | |
| 		},
 | |
| 		onShow: function() {
 | |
| 			// uni.clearStorageSync()
 | |
| 			if(uni.getStorageSync('token')!='') {
 | |
| 				toolAll.tools.networkStatus();//检查当前网络状态
 | |
| 				toolAll.tools.updaX();//检测版本更新
 | |
| 				// 刷新token
 | |
| 				toolAll.tools.refrshTokenEv();
 | |
| 			} 
 | |
| 			toolAll.tools.checkQuan();
 | |
| 		},
 | |
| 		onHide: function() {
 | |
| 			toolAll.tools.closeTimer();//清空埋点倒计时
 | |
| 			uni.removeStorageSync('isQuan');
 | |
| 			uni.removeStorageSync('quanImg'); // 清空优惠券图片缓存
 | |
| 			uni.removeStorageSync('quanId'); // 清空优惠券id缓存
 | |
| 			uni.removeStorageSync('isVedio'); // 清空是否是视频缓存
 | |
| 		}
 | |
| 	};
 | |
| </script>
 | |
| 
 | |
| <style>
 | |
| 	/*每个页面公共css */
 | |
| 	@import url("./commons/hengmei.css");
 | |
| 	@import url("./commons/animate.min.css");
 | |
| 	page {background-color: rgba(244, 244, 244, 1);}
 | |
| </style>
 |