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 @@