Browse Source

fix: change textbookPushManager

DESKTOP-USV654P\pc 2 weeks ago
parent
commit
f1465e417a

+ 1 - 1
Makefile

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

+ 1 - 1
src/views/teachingManager/textbookPopManager/components/data.config.ts

@@ -142,7 +142,7 @@ export const TableColumns: BasicColumn[] = [
   },
   {
     title: '领取人员',
-    dataIndex: 'claimUser',
+    dataIndex: 'receiveUserIdCn',
     width: 100,
     align: 'left',
   },

+ 1 - 1
src/views/teachingManager/textbookPushManager/components/data.config.ts

@@ -92,7 +92,7 @@ export const TableColumns: BasicColumn[] = [
   },
   {
     title: '入库时间',
-    dataIndex: 'createDate',
+    dataIndex: 'createDateStr',
   },
   {
     title: '入库人员',

+ 1 - 1
src/views/teachingManager/textbookPushManager/index.vue

@@ -121,7 +121,7 @@
     <BasicTable @register="registerTable">
       <template #toolbar>
         <a-button type="primary" @click="handelStore"> 教材入库 </a-button>
-        <a-button type="primary" @click="handelImport"> 教材导入 </a-button>
+        <a-button type="primary" v-if="false" @click="handelImport"> 教材导入 </a-button>
         <!-- <a-button type="primary" @click="handleExport()"> 导出指定记录 </a-button> -->
         <a-button type="primary" @click="handleExport">导出记录</a-button>
       </template>