更新采购申请文件模版下载

This commit is contained in:
吴红兵
2026-03-09 15:22:19 +08:00
parent 5963bbafd6
commit 03f10180dc
22 changed files with 333 additions and 364 deletions

View File

@@ -69,11 +69,7 @@ export function uploadBidFileNewVersion(data: {
});
}
export function submitBidFileTask(data: {
runJobId: string;
to?: number;
comment?: string;
}) {
export function submitBidFileTask(data: { runJobId: string; to?: number; comment?: string }) {
return request({
url: '/purchase/purchasingbidfile/submit',
method: 'post',
@@ -121,13 +117,7 @@ export function getFlowPurchaseDetail(purchaseId: string) {
});
}
export function tempStoreBidFile(data: {
purchaseId: string;
fileId?: string;
fileName?: string;
fileUrl?: string;
comment?: string;
}) {
export function tempStoreBidFile(data: { purchaseId: string; fileId?: string; fileName?: string; fileUrl?: string; comment?: string }) {
return request({
url: '/purchase/purchasingbidfile/tempStore',
method: 'post',
@@ -141,4 +131,4 @@ export function submitBidFile(purchaseId: string) {
method: 'post',
params: { purchaseId },
});
}
}