Browse Source

fix: change textbookPopManager

DESKTOP-USV654P\pc 2 weeks ago
parent
commit
0c84cb18b2
2 changed files with 3 additions and 2 deletions
  1. 1 1
      Makefile
  2. 2 1
      src/views/teachingManager/textbookPopManager/index.vue

+ 1 - 1
Makefile

@@ -12,7 +12,7 @@ build:
 
 commit:
 	git add . && \
-	git commit --no-verify -m "fix: change icp"
+	git commit --no-verify -m "fix: change textbookPopManager"
 
 checkPre:
 	git checkout pre

+ 2 - 1
src/views/teachingManager/textbookPopManager/index.vue

@@ -9,6 +9,7 @@
   import { searchFormSchema } from './components/data.config';
   import {
     getTextbookIssueRecordPage,
+    postTextbookIssueRecordClaimRecordExportQuery,
     postTextbookIssueRecordExportQuery,
   } from '/@/services/apis/TextbookIssueRecordController';
   import { downloadByData } from '/@/utils/file/download';
@@ -48,7 +49,7 @@
 
   const handleExport1 = async () => {
     const formData = getForm().getFieldsValue();
-    const data = await postTextbookIssueRecordExportQuery(formData);
+    const data = await postTextbookIssueRecordClaimRecordExportQuery(formData);
     downloadByData(data.data, `教材发放导出${formatToDate(new Date())}.xlsx`);
     createMessage.success('导出成功');
   };