3 Star 54 Fork 20

derekerrr/dchat_web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
derekerrr 提交于 2022-05-20 12:03 . 2
<script>
import websocket from 'common/websocket.js';
export default {
onLaunch: function() {
console.log('App Launch');
// #ifdef APP-PLUS
let user = this.$store.getters.token;
if(!user){
uni.closeSocket();
this.$store.dispatch('clearUserInfo');
uni.reLaunch({
url: "/pages/index/login"
})
}else{
websocket.connectSocketInit();
}
// #endif
// #ifdef H5
let path = "/paths" + window.location.href.split("/pages")[1];
let user = this.$store.getters.token;
if(!user){
if(path != "/pages/index/login" || path != "/pages/index/register"){
uni.reLaunch({
url: "/pages/index/login"
})
}
}else{
websocket.connectSocketInit();
}
// #endif
},
onShow: function() {
console.log('App Show');
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/*每个页面公共css */
.line{
height: 20rpx;
width: 750rpx;
background-color: #ededed;
}
/* #ifndef APP-NVUE */
page{
background-color: #ededed;
}
/* #endif */
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/derekerrr/dchat_web.git
git@gitee.com:derekerrr/dchat_web.git
derekerrr
dchat_web
dchat_web
master

搜索帮助