This commit is contained in:
houjishuang
2025-05-28 17:22:52 +08:00
parent 9c28c83391
commit 8b5dc24be9

View File

@ -34,4 +34,11 @@ export async function disableAgency(id: any) {
return request(`/api/biz-service-ebtp-agency/api/agencies/disable/${id}`, {
method: 'post',
});
}
}
export async function getProviderToAgencyPage(params: any) {
return request('/api/biz-supplier-manage/supplier/base/getToAgencyPage', {
method: 'post',
data: params,
});
}