仪表盘
版本库
文件存储
活动
搜索
登录
蔡年峰
/
HM_StandardPda-Browse
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
搜索框添加物料规格,增加批量NG
xwt
2025-06-03
e1669bfd21fb445d3cd755290d28c900c5a3a831
[~cnf/HM_StandardPda-Browse.git]
/
common
/
globalMixin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default {
created() {
this.checkUserAuth()
},
methods: {
checkUserAuth() {
if (!this.$loginInfo.account) {
uni.navigateTo({
url: '/pages/BasePages/login'
});
}
}
}
}