Bladeren bron

feat: save

gemercheung 1 jaar geleden
bovenliggende
commit
faeb45f449
2 gewijzigde bestanden met toevoegingen van 2 en 0 verwijderingen
  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`);