소스 검색

feat: save

gemercheung 1 년 전
부모
커밋
faeb45f449
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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`);