gemercheung vor 1 Jahr
Ursprung
Commit
faeb45f449
2 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 1 0
      src/view/case/records/index.vue
  2. 1 0
      src/view/case/records/manifest.vue

+ 1 - 0
src/view/case/records/index.vue

@@ -454,6 +454,7 @@ const handleSave = async () => {
   }
 };
 const handleExport = async () => {
+  await saveCaseDetailInfo(props.caseId, data);
   const res = await exportCaseInquestInfo(props.caseId);
   console.log("res", res);
   saveAs(res, `${props.title}_勘验笔录.docx`);

+ 1 - 0
src/view/case/records/manifest.vue

@@ -293,6 +293,7 @@ const handleSave = async () => {
   }
 };
 const handleExport = async () => {
+  await saveCaseDetailInfo(props.caseId, data);
   const res = await exportCaseDetailInfo(props.caseId);
   console.log("res", res);
   saveAs(res, `${props.title}_提取清单.docx`);