This commit is contained in:
houjishuang
2025-06-03 17:19:01 +08:00
parent 0d22f9bd72
commit 0852a973d3
4 changed files with 521 additions and 20 deletions

View File

@ -53,4 +53,23 @@ export async function getProviderToAgencyPage(params: any) {
data: params,
});
}
export async function searchWaitToAgree(params: any) {
return request('/api/biz-service-ebtp-agency/api/agencies/wait/to/agree', {
method: 'post',
data: params,
});
}
export async function agreeAgency(id: any) {
return request(`/api/biz-service-ebtp-agency/api/agencies/approve/agree/${id}`, {
method: 'post',
});
}
export async function rejectAgency(id: any) {
return request(`/api/biz-service-ebtp-agency/api/agencies/approve/reject/${id}`, {
method: 'post',
});
}