diff --git a/src/api/admin.js b/src/api/admin.js index f5e1604..152cbaf 100644 --- a/src/api/admin.js +++ b/src/api/admin.js @@ -279,6 +279,14 @@ export function batchAddInternationalization(param) { data: param }) } +// 管理端修改用户课题组 +export function updateUserHospitalGroupInfo(data) { + return request({ + url: `/User/updateUserHospitalGroupInfo`, + method: 'put', + data + }) +} // 管理端修改用户角色 export function updateUserRoleInfo(data) { return request({ diff --git a/src/views/system/user/components/UserInfo.vue b/src/views/system/user/components/UserInfo.vue index 59cc4f0..cacbe9d 100644 --- a/src/views/system/user/components/UserInfo.vue +++ b/src/views/system/user/components/UserInfo.vue @@ -26,16 +26,30 @@ + :prop="hasPermi(['role:ga']) ? 'groups' : ''" v-if="type === 0">
- +
+ +
+ + + + + {{ $t('system:userlist:button:groups') }} + +
+
+ \ No newline at end of file