This commit is contained in:
吴红兵
2026-03-07 17:32:17 +08:00
parent 1cf529cead
commit 15b3efe51e
4 changed files with 593 additions and 0 deletions

View File

@@ -392,3 +392,27 @@ export function updateFiles(data: { purchaseId: string; fileIds: string[] }) {
data,
});
}
export function tempStoreSupplement(applyId: string, fileIds: string[]) {
return request({
url: '/purchase/purchasingapply/supplement/temp-store',
method: 'post',
data: { applyId, fileIds },
});
}
export function submitSupplement(applyId: string) {
return request({
url: '/purchase/purchasingapply/supplement/submit',
method: 'post',
data: { id: applyId },
});
}
export function getSupplementFileType(purchaseType: string) {
return request({
url: '/purchase/purchasingapply/supplement/file-type',
method: 'get',
params: { purchaseType },
});
}