diff --git a/src/views/charge/index.vue b/src/views/charge/index.vue index fd03174..8ee2944 100644 --- a/src/views/charge/index.vue +++ b/src/views/charge/index.vue @@ -142,7 +142,10 @@ const clickItem = (item: any) => { } const dockerList = ref([]) const getDockerList = () => { - post('organization/member/allDoctorList').then((res: any) => { + let query={ + role:1 + } + post('organization/member/search').then((res: any) => { dockerList.value = res }) }