Merge branch 'main' of ssh://git.jizhiweb.cn:2222/clinic-v2/web

This commit is contained in:
ChenQiuYu 2025-04-30 10:52:10 +08:00
commit 32da952250
1 changed files with 4 additions and 1 deletions

View File

@ -140,7 +140,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',{query:query}).then((res: any) => {
dockerList.value = res dockerList.value = res
}) })
} }