Explorar el Código

日期格式、最近新增表展示的样式固定

yellowtaotao hace 3 años
padre
commit
d9a723073b

+ 3 - 0
src/filters/index.js

@@ -117,6 +117,9 @@ export function formatDateTime(date) {
 
 // 格式化日期+时间 ,去掉T
 export function formatDateTimeT(date) {
+  if (!date) {
+    return date
+  }
   return date.replace('T', ' ');
 }
 

+ 19 - 0
src/views/count/personDataDetail.vue

@@ -43,6 +43,9 @@
           :row-key="(record, index) => index"
           :pagination="false"
         >
+          <template slot="createdTime" slot-scope="text, record">
+            <span>{{ record.createdTime | formatDateTime }}</span>
+          </template>
         </a-table>
         <!-- 分页 -->
         <div class="a-pagination-display">
@@ -70,6 +73,9 @@
           <template slot="action" slot-scope="text, record">
             <a @click="handleExportExamFile(record)">导出试卷</a>
           </template>
+          <template slot="createdTime" slot-scope="text, record">
+            <span>{{ record.createdTime | formatDateTime }}</span>
+          </template>
         </a-table>
         <!-- 分页 -->
         <div class="a-pagination-display">
@@ -94,6 +100,9 @@
           :row-key="(record, index) => index"
           :pagination="false"
         >
+          <template slot="createdTime" slot-scope="text, record">
+            <span>{{ record.createdTime | formatDateTime }}</span>
+          </template>
         </a-table>
         <!-- 分页 -->
         <div class="a-pagination-display">
@@ -184,12 +193,15 @@ export default {
           dataIndex: 'points',
           key: 'points',
           align: 'center',
+          width: 150,
         },
         {
           title: '时间',
           dataIndex: 'createdTime',
           key: 'createdTime',
+          scopedSlots: { customRender: 'createdTime' },
           align: 'center',
+          width: 250,
         },
       ];
       this.getUserPointRecord(); // 获取:积分历史
@@ -206,18 +218,22 @@ export default {
           dataIndex: 'totalPoints',
           key: 'totalPoints',
           align: 'center',
+          width: 150,
         },
         {
           title: '成绩',
           dataIndex: 'points',
           key: 'points',
           align: 'center',
+          width: 150,
         },
         {
           title: '时间',
           dataIndex: 'createdTime',
           key: 'createdTime',
           align: 'center',
+          scopedSlots: { customRender: 'createdTime' },
+          width: 250,
         },
         {
           title: '操作',
@@ -241,6 +257,8 @@ export default {
           dataIndex: 'createdTime',
           key: 'createdTime',
           align: 'center',
+          scopedSlots: { customRender: 'createdTime' },
+          width: 250,
         },
       ];
       this.getUserStudyRecord(); // 获取:学习记录
@@ -472,6 +490,7 @@ export default {
             this.userStudyRecord = [];
             this.userStudyRecordPagination.total = resdData.totalElements; // 总条数
           }
+          console.log(this.userStudyRecord);
           this.loading4 = false;
         })
         .catch(() => {

+ 4 - 0
src/views/examManagement/examManagementDetailMore.vue

@@ -12,6 +12,9 @@
         <template slot="nickName" slot-scope="text, record">
           <span>{{ record.user ? record.user.nickName : '' }}</span>
         </template>
+        <template slot="endTime" slot-scope="text, record">
+          <span>{{ record.endTime | formatDateTime }}</span>
+        </template>
       </a-table>
       <div class="a-pagination-display">
         <a-pagination
@@ -111,6 +114,7 @@ export default {
           title: '时间',
           dataIndex: 'endTime',
           key: 'endTime',
+          scopedSlots: { customRender: 'endTime' },
         },
       ];
       this.unReferencedColumns = [