补贴申请

This commit is contained in:
George
2025-10-31 16:54:39 +08:00
parent 878503d685
commit b5e5ff8277
15 changed files with 234 additions and 10 deletions

View File

@ -58,3 +58,7 @@ export function getPresentedCredit(data: { act_id: string; usd_amount: number })
export function getBankImg(id: number) {
return request({ url: '/api/app/remittance/getBankImg', method: 'GET', data: { id }, responseType: 'arraybuffer' });
}
export function applySubsidy(data: Record<string, any>) {
return request({ url: '/api/app/subsidy/apply', method: 'POST', data });
}