From 799a858f72a231a366a4a1d66a5e526b649e7a69 Mon Sep 17 00:00:00 2001 From: LiJianZhao Date: Wed, 30 Apr 2025 10:42:13 +0800 Subject: [PATCH] dev --- src/views/charge/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 }) }