From 6f3e8f67a3f59e8d5ad624a5a12dc723b45cf60e Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期二, 21 十月 2025 10:57:46 +0800
Subject: [PATCH] 修改

---
 src/views/work/onlineEducation/offlineEducation/index.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/work/onlineEducation/offlineEducation/index.vue b/src/views/work/onlineEducation/offlineEducation/index.vue
index 5b1ef28..a8d8e1a 100644
--- a/src/views/work/onlineEducation/offlineEducation/index.vue
+++ b/src/views/work/onlineEducation/offlineEducation/index.vue
@@ -42,7 +42,7 @@
     <!-- 表格数据 -->
     <el-table v-loading="loading" :data="dataList" :border="true">
       <el-table-column label="序号" type="index" align="center" width="80" />
-      <el-table-column label="日期" prop="createTime" align="center"  />
+      <el-table-column label="日期" prop="planDate" align="center"  />
       <el-table-column label="计划名称" prop="planName" align="center"  />
       <el-table-column label="学员姓名" prop="studentName" align="center">
         <template #default="scope">
@@ -76,7 +76,7 @@
 <!--          <span>{{scope.row.passed == 0 ? '不合格':'合格'}}</span>-->
 <!--        </template>-->
 <!--      </el-table-column>-->
-      <el-table-column label="培洲记录及有效评价" prop="passed" align="center" width="180">
+      <el-table-column label="培训记录及有效评价" prop="passed" align="center" width="180">
         <template #default="scope">
           <div v-for="item in scope.row.files" style="display: flex;flex-direction: column">
             <div style="display: flex;flex-direction: column;align-items: center">
@@ -164,7 +164,7 @@
     data.dataList = res.data.list.map(item => {
       return {
         ...item,
-        createTime: item.createTime.substring(0,10)
+        planDate: item.planDate?item.planDate.substring(0,10):null
       }
     })
     data.total = res.data.total

--
Gitblit v1.9.2