保存加项PDF与导检单签名判断

This commit is contained in:
xianyi
2026-01-05 17:16:32 +08:00
parent b41deedd00
commit f8fdebb955
4 changed files with 227 additions and 46 deletions

View File

@@ -367,10 +367,11 @@ export const ExamAddonPanel = ({ client }: ExamAddonPanelProps) => {
});
if (res.Status === 200 && res.Data?.pdf_url) {
// 保存加项PDF信息到localStorage
// 保存加项PDF信息到localStorage(未签名状态)
setAddItemBillPdf(examId, {
pdf_name: res.Data.pdf_name || '加项单',
pdf_url: res.Data.pdf_url,
is_signed: false,
});
return true;
} else {