2 Star 24 Fork 24

重庆柔软科技有限公司/天天商城后台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
主角 提交于 2022-06-17 20:16 . 升级基础架构,增加uni-state 2.0
<script>
import {
mapGetters,
mapActions
} from 'vuex'
import config from '@/admin.config.js'
import {
version
} from './package.json'
export default {
created() {
this.clear = undefined
},
computed: {
...mapGetters({
isTokenValid: 'user/isTokenValid'
})
},
methods: {
...mapActions({
init: 'app/init'
}),
clearPlatform() {
const keysOfPlatform = uni.getStorageInfoSync().keys.filter(key => key.indexOf('platform') > -1)
keysOfPlatform.length && keysOfPlatform.forEach(key => uni.removeStorageSync(key))
}
},
onPageNotFound(msg) {
uni.redirectTo({
url: config.error.url
})
},
onLaunch: function() {
console.log(
`%c uniCloud Admin %c 当前版本号 v${version} %c`,
'background:#35495e ; padding: 1px; border-radius: 3px 0 0 3px; color: #fff',
'background:#007aff ;padding: 1px; border-radius: 0 3px 3px 0; color: #fff; font-weight: bold;',
'background:transparent'
)
console.log('App Launch')
if (!this.isTokenValid) {
uni.redirectTo({
url: config.login.url
})
} else {
this.init()
}
},
onShow: function() {
console.log('App Show')
this.clear = setInterval(() => this.clearPlatform(), 15 * 60 * 1000)
},
onHide: function() {
console.log('App Hide')
this.clear && clearInterval(this.clear)
}
}
</script>
<style lang="scss">
/*每个页面公共css */
/* #ifndef APP-NVUE */
@import '@/common/uni.css';
@import '@/common/uni-icons.css';
@import '@/common/admin-icons.css';
@import '@/common/theme.scss';
@import "@/common/style.scss";
/* #endif */
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cq-soft/tiantian-admin.git
[email protected]:cq-soft/tiantian-admin.git
cq-soft
tiantian-admin
天天商城后台
master

搜索帮助