This commit is contained in:
吴红兵
2026-03-07 18:23:23 +08:00
parent 15b3efe51e
commit 0e54f887cb
4 changed files with 547 additions and 127 deletions

View File

@@ -416,3 +416,11 @@ export function getSupplementFileType(purchaseType: string) {
params: { purchaseType },
});
}
export function getSupplementFilesByApplyId(applyId: string) {
return request({
url: '/purchase/purchasingfiles/listByType',
method: 'get',
params: { purchaseId: applyId },
});
}