1 Star 0 Fork 0

陆地巡洋舰/AX

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
15779967932 提交于 2023-10-20 14:10 . 1
<script>
import {
getData,
wxOpenId,
} from 'api/index.js'
export default {
globalData:{
redirectToPage: null, // 保存需要跳转的页面路径
approvalRecordsCount:0, //审批待处理
},
onLaunch: function() {},
onShow() {
this.IsLogin()
},
methods:{
IsLogin(){
let token = uni.getStorageSync('token')
// if (!token) {
// this.$store.dispatch('login').then(res => {
// if (res.code === 10000) {
// uni.navigateTo({
// url: '/pages/login/index'
// });
// }
// })
// } else {
// this.$store.dispatch('getUserInfo')
// }
if(token){
this.$store.dispatch('getUserInfo')
}else{
this.$store.dispatch('login')
}
}
}
};
</script>
<style lang="scss">
/* #ifndef APP-PLUS-NVUE */
/* uni.css - 通用组件、模板样式库,可以当作一套ui库应用 */
@import './static/css/uni.css';
@import './static/css/index.css';
@import '/wxcomponents/@vant/weapp/common/index.wxss';
page {
height: 100%;
}
/* #endif*/
/* 解决头条小程序组件内引入字体不生效的问题 */
/* #ifdef MP-TOUTIAO */
@font-face {
font-family: uniicons;
src: url('/static/css/uni.ttf');
}
/* #endif */
.pagination{
box-shadow: $uni-box-shadow;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/YtCaiden/ax.git
git@gitee.com:YtCaiden/ax.git
YtCaiden
ax
AX
master

搜索帮助