shenqing
This commit is contained in:
@ -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',
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user