加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 969 Bytes
一键复制 编辑 原始数据 按行查看 历史
erweiwang 提交于 2020-12-26 12:07 . first commit
<script>
export default {
onLaunch: function() {
//连接socket服务
this.$store.dispatch('connetsocket')
// nvue中引入图标库
// const domModule = weex.requireModule('dom')
// domModule.addRule('fontFace', {
// 'fontFamily': "iconfont",
// 'src': "url('http://at.alicdn.com/t/font_1859985_7mxozsfdvib.ttf')"
// });
//网络切换提示
uni.onNetworkStatusChange(function(res) {
if (res.isConnected) {
uni.showToast({
title: `网络切换为${res.networkType}`,
duration: 2500,
icon: 'none'
})
}
});
//路由拦截
let hastoken = uni.getStorageSync('token')
if (hastoken) {
uni.switchTab({
url: 'pages/index/index'
});
}
}
}
</script>
<style>
/*每个页面公共css */
@import url("/common/free.css");
@import url("/common/basecommon.css");
/* #ifndef APP-PLUS-NVUE */
@import url("./common/ani.css");
/* #endif */
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化