Files
klp-mono/apps/hand-factory/App.vue
砂糖 9fab0ade4d feat(发货): 新增发货功能模块及相关页面
- 添加发货功能页面及API接口
- 更新tabbar图标和路由配置
- 修改物料信息展示逻辑
- 优化页面跳转和权限控制
- 更新应用版本至1.3.29
2026-03-28 18:02:04 +08:00

41 lines
823 B
Vue

<script>
import config from './config'
import { getToken } from '@/utils/auth'
import updateManager from "@/utils/update.js";
export default {
onLaunch: function() {
this.initApp()
updateManager.checkUpdate();
plus.navigator.closeSplashscreen()
},
methods: {
// 初始化应用
initApp() {
// 初始化应用配置
this.initConfig()
// 检查用户登录状态
//#ifdef H5
this.checkLogin()
//#endif
},
initConfig() {
this.globalData.config = config
},
checkLogin() {
if (!getToken()) {
this.$tab.reLaunch('/pages/login')
return;
}
}
}
}
uni.$updateManager = updateManager;
</script>
<style lang="scss">
@import '@/static/scss/index.scss'
</style>