1 Star 0 Fork 13

muker-tech/hxshop-uni-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 3.11 KB
一键复制 编辑 原始数据 按行查看 历史
吃酸菜的鱼 提交于 2020-05-23 23:26 . .
<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>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/muker-tech/hxshop-uni-app.git
git@gitee.com:muker-tech/hxshop-uni-app.git
muker-tech
hxshop-uni-app
hxshop-uni-app
master

搜索帮助