fix
This commit is contained in:
@@ -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 },
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user