祖安之光
2025-12-03 52bd5557cb7a3eeb467f75a2b9101bf7f097754f
src/store/modules/user.js
@@ -12,6 +12,7 @@
      id: '',
      name: '',
      companyId: null,
      companyName: '',
      avatar: '',
      roles: [],
      permissions: []
@@ -46,9 +47,10 @@
            } else {
              this.roles = ['ROLE_DEFAULT']
            }
            this.id = user.userId
            this.name = user.userName
            this.id = user.id
            this.name = user.name
            this.companyId = user.companyId
            this.companyName = user.companyName
            this.avatar = avatar
            Cookies.set('userInfo',JSON.stringify(user))
            resolve(res)