This commit is contained in:
LiJianZhao 2025-04-30 10:42:13 +08:00
parent f5718af4bc
commit 799a858f72
1 changed files with 4 additions and 1 deletions

View File

@ -142,7 +142,10 @@ const clickItem = (item: any) => {
} }
const dockerList = ref<any[]>([]) const dockerList = ref<any[]>([])
const getDockerList = () => { const getDockerList = () => {
post('organization/member/allDoctorList').then((res: any) => { let query={
role:1
}
post('organization/member/search').then((res: any) => {
dockerList.value = res dockerList.value = res
}) })
} }