调整采购申请查询及增加导出功能

This commit is contained in:
吴红兵
2026-03-11 16:28:31 +08:00
parent 30edd38fee
commit 594a58cae4
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',
});
}