diff --git a/ui/src/views/system-resource-management/ApplicationResourceIndex.vue b/ui/src/views/system-resource-management/ApplicationResourceIndex.vue
index 38378b0ea..24fc4eac1 100644
--- a/ui/src/views/system-resource-management/ApplicationResourceIndex.vue
+++ b/ui/src/views/system-resource-management/ApplicationResourceIndex.vue
@@ -34,7 +34,7 @@
clearable
style="width: 220px"
>
-
+
@@ -161,6 +161,7 @@ import { isAppIcon } from '@/utils/common'
import useStore from '@/stores'
import { datetimeFormat } from '@/utils/time'
import {loadPermissionApi} from "@/utils/dynamics-api/permission-api.ts";
+import UserApi from '@/api/user/user.ts'
const { user } = useStore()
@@ -215,6 +216,10 @@ function getList() {
onMounted(() => {
getWorkspaceList()
getList()
+
+ UserApi.getAllMemberList('').then((res: any) => {
+ user_options.value = res.data
+ })
})
diff --git a/ui/src/views/system-resource-management/ModelResourceIndex.vue b/ui/src/views/system-resource-management/ModelResourceIndex.vue
index 0615e5801..554cfa3c5 100644
--- a/ui/src/views/system-resource-management/ModelResourceIndex.vue
+++ b/ui/src/views/system-resource-management/ModelResourceIndex.vue
@@ -34,7 +34,7 @@
clearable
style="width: 220px"
>
-
+
{
getWorkspaceList()
getProvider()
+
+ UserApi.getAllMemberList('').then((res: any) => {
+ user_options.value = res.data
+ })
})