perry-mall/App.vue

80 lines
3.0 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/api/'); // 配置全局域名
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: "https://oss.hmzfyy.cn/storage/images/202202/620b284c96dd7.png",
selectedIconPath: "https://oss.hmzfyy.cn/storage/images/202202/620b284c9704a.png"
},
{
iconPath: "https://oss.hmzfyy.cn/storage/images/202202/620b2865a344f.png",
selectedIconPath: "https://oss.hmzfyy.cn/storage/images/202202/620b28659f34f.png"
},
{
iconPath: "https://oss.hmzfyy.cn/storage/images/202202/620b286da1ddc.png",
selectedIconPath: "https://oss.hmzfyy.cn/storage/images/202202/620b286da2073.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('token')!='') {
// 开始埋点倒计时
toolAll.tools.daoTime();
}
},
onHide: function() {
toolAll.tools.closeTimer();//清空埋点倒计时
}
};
</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>