lct
Your Name
2022-08-12 9bc4417c85acb89059a5dc039dcad218a1c0d468
src/stores/userInfo.ts
@@ -16,14 +16,15 @@
         roles: [],
         authBtnList: [],
         uid:'',
         projectId:''
      },
            projectId: '',
            dataList: []
        }
   }),
   actions: {
      async setUserInfos(value: any) {
         this.userInfos.userName = value.username
         this.userInfos.uid = value.uid
         this.userInfos.roles = value.role
            this.userInfos.userName = value.username;
            this.userInfos.uid = value.uid;
            this.userInfos.roles = value.role;
         // const userName = Cookies.get('userName');
         // // 模拟数据
         // let defaultRoles: Array<string> = [];
@@ -65,6 +66,6 @@
         // } else {
         //    this.userInfos = userInfos;
         // }
      },
   },
        }
    }
});