Merge branch 'feature-purchase' into developer

This commit is contained in:
吴红兵
2026-03-11 16:28:46 +08:00
2 changed files with 170 additions and 16 deletions

View File

@@ -437,3 +437,12 @@ export function getSupplementFilesByApplyId(applyId: string) {
params: { purchaseId: applyId },
});
}
export function exportPurchaseApply(params?: any) {
return request({
url: '/purchase/purchasingapply/export',
method: 'get',
params,
responseType: 'blob',
});
}