|
@@ -6,7 +6,8 @@ export const useUserStore = defineStore('user', () => {
|
|
|
const dialogStatus = ref(false);
|
|
|
|
|
|
const isCheckUser = computed(() => {
|
|
|
- return userInfo.value.userName === 'xinyi001'
|
|
|
+ const whiteList = ['xinyi001', 'lixiaowei01', 'chenchao1985', 'lijie1981', 'zhujinlong1988'];
|
|
|
+ return whiteList.includes(userInfo.value.userName);
|
|
|
})
|
|
|
|
|
|
const setUserInfo = params => {
|