代码拉取完成,页面将自动刷新
<script>
import Vue from 'vue'
export default {
onLaunch: function () {
//检查是否登录
this.$api.user.hasLogin();
Vue.prototype.clientType = function(){
let c = 1; //默认为电脑
// #ifdef APP-PLUS
switch(uni.getSystemInfoSync().platform){
case 'android':
c = 3;
break;
case 'ios':
c = 4;
break;
default:
}
// #endif
// #ifdef h5
c = 2;
// #endif
// #ifdef MP-WEIXIN
c = 5;
// #endif
return c
}
uni.getSystemInfo({
success: function(e) {
// #ifndef MP
Vue.prototype.StatusBar = e.statusBarHeight;
if (e.platform == 'android') {
Vue.prototype.CustomBar = e.statusBarHeight + 50;
} else {
Vue.prototype.CustomBar = e.statusBarHeight + 45;
};
// #endif
// #ifdef MP-WEIXIN
Vue.prototype.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect();
Vue.prototype.Custom = custom;
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
// #endif
// #ifdef MP-ALIPAY
Vue.prototype.StatusBar = e.statusBarHeight;
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
// #endif
}
})
//关闭页面
Vue.prototype.closePage=function(){
if(getCurrentPages().length>1){
uni.navigateBack();
}else{
// #ifdef H5
// 当前页为登录则跳过,不显示‘去登陆’
let l = getCurrentPages().length;
if(l == 1){
uni.reLaunch({
url: '/pages/index/index'
});
}else{
history.back()
}
// #endif
// #ifndef H5
uni.reLaunch({
url: '/pages/index/index'
});
// #endif
}
}
/**
* 统一跳转接口,拦截未登录路由
* navigator标签现在默认没有转场动画,所以用view
*/
Vue.prototype.navTo = function(url){
// if(!this.hasLogin){
// url = '/pages/user/login/login';
// }
uni.navigateTo({
url:url
})
}
},
onShow: function () {
try {
const value = uni.getStorageSync('userData');
if (value) {
//有登录信息
that.$store.dispatch("setUserData",value); //存入状态
}else{
//用户未登录
/* uni.navigateTo({
url: '/pages/user/login/login',
}); */
}
} catch (e) {
// error
}
},
onHide: function () {
console.log('App Hide')
}
}
</script>
<style>
@import "/common/iconfont/iconfont.css";
/* #ifndef APP-PLUS-NVUE */
@import "/common/main.css";
/* #endif */
/* 骨架屏方案 */
.Skeleton {
background-color: #f3f3f3;
padding: 20upx 0;
border-radius: 6upx;
}
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。