代码拉取完成,页面将自动刷新
同步操作将从 吃酸菜的鱼/hxshop-uni-app 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<script>
import Vue from 'vue'
const CryptoJS = require("crypto-js");
export default {
onLaunch: function () {
//检查是否登录
this.$api.user.hasLogin();
//字符串加密
Vue.prototype.$strEncode = function($data){
if(typeof $data == 'object'){
$data = JSON.stringify($data);
}
var key = CryptoJS.enc.Latin1.parse('BC1F5E3BAEE198AC');
var iv = CryptoJS.enc.Latin1.parse('1F5E3BAEE198ACE1');
var encoded = CryptoJS.AES.encrypt($data, key,{
iv: iv,
mode: CryptoJS.mode.CBC,//模式
adding: CryptoJS.pad.ZeroPadding
}).toString();
if(!encoded){
return '';
}
return encoded
},
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(){
console.log(getCurrentPages());
if(getCurrentPages().length>1){
uni.navigateBack();
}else{
// #ifdef H5
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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。