From c851542fdeec3b105f219f6cca5cd6ecb268a49a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=98=E6=B0=91=E5=BA=B7?= Date: Thu, 20 Mar 2025 17:44:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=BB=BA=E7=BB=84=E7=BB=87=E5=90=8E?= =?UTF-8?q?=EF=BC=8C=E9=9C=80=E8=A6=81=E5=88=B7=E6=96=B0=E6=89=8D=E8=83=BD?= =?UTF-8?q?=E7=9C=8B=E5=88=B0=E7=BB=84=E7=BB=87=E4=BF=A1=E6=81=AF=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../OrganizationManage/OrganizationManage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/Jyh/PersonalCenter/OrganizationManage/OrganizationManage.vue b/src/views/Jyh/PersonalCenter/OrganizationManage/OrganizationManage.vue index 7365a03..4fbfb4d 100644 --- a/src/views/Jyh/PersonalCenter/OrganizationManage/OrganizationManage.vue +++ b/src/views/Jyh/PersonalCenter/OrganizationManage/OrganizationManage.vue @@ -218,11 +218,11 @@ async function queryUserInfo() { if (res.data?.data?.code === 200) { userInfo.value = res.data?.data.data; } - if (userInfo.value.groupId) { + if (res.data?.data.data.groupId) { organizationInfo.value = { - groupId: userInfo.value.groupId, - organizationName: userInfo.value.groupName as string, - organizationProfile: userInfo.value.groupDesc as string, + groupId: res.data?.data.data.groupId, + organizationName: res.data?.data.data.groupName as string, + organizationProfile: res.data?.data.data.groupDesc as string, }; getMemberList(); } else {