|
@@ -6,7 +6,7 @@ import {
|
|
setUserId,
|
|
setUserId,
|
|
TokenKey,
|
|
TokenKey,
|
|
} from '@/utils/auth'
|
|
} from '@/utils/auth'
|
|
-import { Query } from '@/api/dataIntegration'
|
|
|
|
|
|
+import { Query } from '@/api/webApi'
|
|
import { login, loginUp } from '@/api/newLogin'
|
|
import { login, loginUp } from '@/api/newLogin'
|
|
import { ObjTy } from '~/common'
|
|
import { ObjTy } from '~/common'
|
|
import router, { constantRoutes, asyncRoutes } from '@/router'
|
|
import router, { constantRoutes, asyncRoutes } from '@/router'
|
|
@@ -37,8 +37,11 @@ export const useUserStore = defineStore('user', {
|
|
? sessionStorage.getItem('User_Id')
|
|
? sessionStorage.getItem('User_Id')
|
|
: '',
|
|
: '',
|
|
userPoewrList: sessionStorage.getItem('userAuthList')
|
|
userPoewrList: sessionStorage.getItem('userAuthList')
|
|
- ? JSON.parse(sessionStorage.getItem('userAuthList'))
|
|
|
|
|
|
+ ? JSON.parse(sessionStorage.getItem('userAuthList')!)
|
|
: [],
|
|
: [],
|
|
|
|
+ authMap: sessionStorage.getItem('authMap')
|
|
|
|
+ ? JSON.parse(sessionStorage.getItem('authMap')!)
|
|
|
|
+ : {},
|
|
passwordDialogVisible: false
|
|
passwordDialogVisible: false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -80,6 +83,13 @@ export const useUserStore = defineStore('user', {
|
|
SET_UserPoewrList(userPoewrList: any) {
|
|
SET_UserPoewrList(userPoewrList: any) {
|
|
this.$patch((state) => {
|
|
this.$patch((state) => {
|
|
state.userPoewrList = userPoewrList
|
|
state.userPoewrList = userPoewrList
|
|
|
|
+ sessionStorage.setItem('userAuthList', JSON.stringify(userPoewrList))
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ SET_AUTH_MAP(authMap: { [x: string]: number }) {
|
|
|
|
+ this.$patch((state) => {
|
|
|
|
+ state.authMap = authMap
|
|
|
|
+ sessionStorage.setItem('authMap', JSON.stringify(authMap))
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|
|
@@ -115,13 +125,15 @@ export const useUserStore = defineStore('user', {
|
|
const datas = listValues
|
|
const datas = listValues
|
|
if (datas && datas.length) {
|
|
if (datas && datas.length) {
|
|
const arrs: any = []
|
|
const arrs: any = []
|
|
|
|
+ const map: { [x: string]: number } = {}
|
|
for (const item of datas) {
|
|
for (const item of datas) {
|
|
if (item.ident) {
|
|
if (item.ident) {
|
|
arrs.push(item.ident)
|
|
arrs.push(item.ident)
|
|
|
|
+ map[item.ident] = item.authid
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// arrs.push('transit');
|
|
// arrs.push('transit');
|
|
- sessionStorage.setItem('userAuthList', JSON.stringify(arrs))
|
|
|
|
|
|
+ // sessionStorage.setItem('userAuthList', JSON.stringify(arrs))
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
const data = {
|
|
const data = {
|
|
roles: arrs,
|
|
roles: arrs,
|
|
@@ -136,11 +148,12 @@ export const useUserStore = defineStore('user', {
|
|
this.M_AVATAR(avatar)
|
|
this.M_AVATAR(avatar)
|
|
this.M_roles(roles ? roles : ['admin'])
|
|
this.M_roles(roles ? roles : ['admin'])
|
|
this.SET_UserPoewrList(roles ? roles : ['admin'])
|
|
this.SET_UserPoewrList(roles ? roles : ['admin'])
|
|
|
|
+ this.SET_AUTH_MAP(map)
|
|
resolve(data)
|
|
resolve(data)
|
|
}, 100)
|
|
}, 100)
|
|
} else {
|
|
} else {
|
|
- const arr: any = []
|
|
|
|
- sessionStorage.setItem('userAuthList', arr)
|
|
|
|
|
|
+ // const arr: any = []
|
|
|
|
+ // sessionStorage.setItem('userAuthList', arr)
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
const data = {
|
|
const data = {
|
|
roles: this.userPoewrList,
|
|
roles: this.userPoewrList,
|