From 5a4fa5a63dd748de015978130309c97b7744d45c Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Tue, 9 Sep 2025 11:47:59 +0800
Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=88=97=E8=A1=A8=EF=BC=9A?=
=?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6=E5=92=8C=E5=88=97=E8=A1=A8?=
=?UTF-8?q?=EF=BC=8C=E9=9C=80=E8=A6=81=E5=9C=A8=E8=A7=92=E8=89=B2=E5=89=8D?=
=?UTF-8?q?=EF=BC=8C=E5=A2=9E=E5=8A=A0=E8=AF=BE=E9=A2=98=E7=BB=84=EF=BC=9B?=
=?UTF-8?q?=E5=8E=BB=E9=99=A4=E6=BC=94=E7=A4=BA=E7=94=A8=E6=88=B7=E7=9A=84?=
=?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6=E5=92=8C=E5=88=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/user/list/index.vue | 96 +++++++++++++++++++---------
1 file changed, 67 insertions(+), 29 deletions(-)
diff --git a/src/views/system/user/list/index.vue b/src/views/system/user/list/index.vue
index 7c2e924..53ec197 100644
--- a/src/views/system/user/list/index.vue
+++ b/src/views/system/user/list/index.vue
@@ -21,6 +21,14 @@
{{ scope.row.Sex ? 'Male' : 'Female' }}
+
+ {{
+ Array.isArray(scope.row.HospitalGroupList) &&
+ scope.row.HospitalGroupList.length > 0
+ ? scope.row.HospitalGroupList.map((item) => item.Name).join(', ')
+ : ''
+ }}
+
{{
Array.isArray(scope.row.UserRoleList) &&
@@ -59,7 +67,7 @@