src/api/srm/tender/index.ts
@@ -198,6 +198,11 @@
  return requestClient.put(`/srm/tender-bid/withdraw?id=${id}`);
}
export function updateBidTotal(id: number, bidTotalAmount?: number | null) {
  const params = bidTotalAmount == null ? '' : `&bidTotalAmount=${bidTotalAmount}`;
  return requestClient.put(`/srm/tender-bid/update-total?id=${id}${params}`);
}
// ========== 报价管理 ==========
export function getQuoteList(bidId: number) {