This commit is contained in:
houjishuang
2025-05-30 17:05:36 +08:00
parent 8294ab8bfd
commit 0d22f9bd72
3 changed files with 46 additions and 31 deletions

View File

@ -7,6 +7,12 @@ export async function getPage(params: any) {
data: params,
});
}
export async function getValidAgencyPage(params: any) {
return request('/api/biz-service-ebtp-agency/api/agencies/find/valid', {
method: 'post',
data: params,
});
}
export async function getDataById(id: any) {
return request(`/api/biz-service-ebtp-agency/api/agencies/${id}`, {
method: 'get',
@ -23,6 +29,12 @@ export async function addAgency(params: any) {
data: params,
});
}
export async function applyAgency(params: any) {
return request('/api/biz-service-ebtp-agency/api/agencies/apply', {
method: 'post',
data: params,
});
}
export async function updateAgency(params: any) {
return request('/api/biz-service-ebtp-agency/api/agencies/update', {
method: 'post',