新建组织后,需要刷新才能看到组织信息修复
This commit is contained in:
@@ -218,11 +218,11 @@ async function queryUserInfo() {
|
|||||||
if (res.data?.data?.code === 200) {
|
if (res.data?.data?.code === 200) {
|
||||||
userInfo.value = res.data?.data.data;
|
userInfo.value = res.data?.data.data;
|
||||||
}
|
}
|
||||||
if (userInfo.value.groupId) {
|
if (res.data?.data.data.groupId) {
|
||||||
organizationInfo.value = {
|
organizationInfo.value = {
|
||||||
groupId: userInfo.value.groupId,
|
groupId: res.data?.data.data.groupId,
|
||||||
organizationName: userInfo.value.groupName as string,
|
organizationName: res.data?.data.data.groupName as string,
|
||||||
organizationProfile: userInfo.value.groupDesc as string,
|
organizationProfile: res.data?.data.data.groupDesc as string,
|
||||||
};
|
};
|
||||||
getMemberList();
|
getMemberList();
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user