添加机构字段

This commit is contained in:
Flow 2025-07-10 15:41:20 +08:00
parent 2a22bf8d3c
commit 77a2d005f3

View File

@ -220,6 +220,7 @@ import UserForm from './UserForm.vue'
import UserImportForm from './UserImportForm.vue'
import UserAssignRoleForm from './UserAssignRoleForm.vue'
import DeptTree from './DeptTree.vue'
import { getUserProfile } from '@/api/system/user/profile'
defineOptions({ name: 'SystemUser' })
@ -247,6 +248,8 @@ const getList = async () => {
const data = await UserApi.getUserPage(queryParams)
list.value = data.list
total.value = data.total
const profile = await getUserProfile()
console.log(profile)
} finally {
loading.value = false
}