perry-mall/App.vue

85 lines
2.9 KiB
Vue

<script>
import toolAll from '@/jsFile/tools.js';
export default {
// 全局域名配置
globalData:{
appletName:'佩丽商城',//小程序名称
},
// 优先于show方法
onLaunch: function() {
// 获取窗口的高度
let windowHeight = uni.getSystemInfoSync().windowHeight;
// 获取状态栏的高度
let statusHeight = uni.getSystemInfoSync().statusBarHeight;
uni.setStorageSync('hostapi','https://peili.scdxtc.cn'); // 配置全局域名
uni.setStorageSync('statusBar',statusHeight); // 缓存状态栏高度
toolAll.tools.networkStatus(); //检查当前网络状态
toolAll.tools.clearClog(); //去除体验版和正式版的所有输出日志
// toolAll.tools.overdue(); //查询是否第一次授权
uni.setStorageSync('publicColor','#000000'); // 设置主色调
// 设置scroll-view的高度一
uni.setStorageSync('scrollHeight-one',windowHeight - (statusHeight + 50 + 59)); // 头部 + 底部
// 设置scroll-view的高度二
uni.setStorageSync('scrollHeight-two',windowHeight - (statusHeight + 50 + 36 + 59)); // 头部 + 底部 + 输入框
// 设置scroll-view的高度三
uni.setStorageSync('scrollHeight-three',windowHeight - (statusHeight + 50 + 36)); // 头部 + 输入框
// 设置scroll-view的高度四 分类筛选列表
uni.setStorageSync('scrollHeight-four',windowHeight - (statusHeight + 50 + 45 + 59));
// toolAll.tools.isVedio(); // 查询视频是否开启
// 查询状态栏的高度、并设置导航栏的高度
// this.statusBarH();
// 设置底部导航栏图片与标题
uni.setStorageSync('footTitle',['首页','分类','我的','购物车'])
uni.setStorageSync('footimg',[
{
iconPath: "/static/public/mo-home.png",
selectedIconPath: "/static/public/active-home.png"
},
{
iconPath: "/static/public/mo-function.png",
selectedIconPath: "/static/public/active-function.png"
},
{
iconPath: "/static/public/mo-person.png",
selectedIconPath: "/static/public/active-person.png"
},
{
iconPath: "https://s6.jpg.cm/2022/02/17/LBETnT.png",
selectedIconPath: "https://s6.jpg.cm/2022/02/17/LBETnT.png"
}
])
},
onShow: function() {
// 检测是否登录过期或是否登录
if(uni.getStorageSync('phone_active')){
toolAll.tools.overdue();
toolAll.tools.updaX();
// 调用定时刷新token
toolAll.tools.timedRefreshToken();
}
},
onHide: function() {
uni.removeStorageSync('isorderDetail');
// 清除刷新token事件
toolAll.tools.clearTokenTime();
}
};
</script>
<style>
/*每个页面公共css */
/* 阿里巴巴矢量图标库 start */
@import url("./commons/icon-font.css");
/* 阿里巴巴矢量图标库 end */
/* 项目主体样式 start */
@import url("./commons/hengmei.css");
/* 项目主体样式 end */
/* 动画样式 start */
@import url("./commons/animate.min.css");
/* 动画样式 end */
page {background-color: rgba(255, 255, 255, 1);}
</style>