natasha 1 год назад
Родитель
Сommit
05ec10ae7e

+ 4 - 1
src/views/content_manage/course_manage/LiveCourse.vue

@@ -18,7 +18,7 @@
                         <el-input
                             placeholder="输入搜索内容"
                             v-model="searchInput">
-                            <i slot="suffix" class="el-input__icon el-icon-search" @click="getList" style="cursor: pointer;"></i>
+                            <i slot="suffix" class="el-input__icon el-icon-search" @click="getList(1)" style="cursor: pointer;"></i>
                         </el-input>
                     </div>
                     <div class="search-item">
@@ -88,6 +88,9 @@
                         label="创建时间"
                         sortable
                         width="160">
+                        <template slot-scope="scope">
+                            {{scope.row.create_time?scope.row.create_time.substring(0,16):'-'}}
+                        </template>
                     </el-table-column>
                     <el-table-column
                         fixed="right"

+ 3 - 0
src/views/content_manage/course_manage/RecordedCourse.vue

@@ -127,6 +127,9 @@
                         label="创建时间"
                         sortable
                         width="165">
+                        <template slot-scope="scope">
+                            {{scope.row.create_time?scope.row.create_time.substring(0,16):'-'}}
+                        </template>
                     </el-table-column>
                     <el-table-column
                         fixed="right"

+ 6 - 0
src/views/content_manage/newspaper_manage/index.vue

@@ -108,6 +108,9 @@
                         label="创建时间"
                         width="144" 
                         sortable>
+                        <template slot-scope="scope">
+                            {{scope.row.create_time?scope.row.create_time.substring(0,16):'-'}}
+                        </template>
                     </el-table-column>
                     <el-table-column
                         prop="updater_real_name"
@@ -119,6 +122,9 @@
                         label="最近编辑时间"
                         width="144"
                         sortable>
+                        <template slot-scope="scope">
+                            {{scope.row.update_time?scope.row.update_time.substring(0,16):'-'}}
+                        </template>
                     </el-table-column>
                     <el-table-column
                         fixed="right"

+ 7 - 1
src/views/organize_manage/PersonList.vue

@@ -128,6 +128,9 @@
                             label="注册时间"
                             sortable
                             width="144">
+                            <template slot-scope="scope">
+                                {{scope.row.register_time?scope.row.register_time.substring(0,16):'-'}}
+                            </template>
                         </el-table-column>
                         <el-table-column
                             prop="status"
@@ -240,6 +243,9 @@
                             label="申请时间"
                             sortable
                             width="144">
+                            <template slot-scope="scope">
+                                {{scope.row.apply_time?scope.row.apply_time.substring(0,16):'-'}}
+                            </template>
                         </el-table-column>
                         <el-table-column
                             prop="audit_time"
@@ -247,7 +253,7 @@
                             sortable
                             width="144">
                             <template slot-scope="scope">
-                                {{scope.row.audit_time?scope.row.audit_time:'-'}}
+                                {{scope.row.audit_time?scope.row.audit_time.substring(0,16):'-'}}
                             </template>
                         </el-table-column>
                         <el-table-column

+ 3 - 0
src/views/organize_manage/index.vue

@@ -116,6 +116,9 @@
                         label="创建时间"
                         sortable
                         width="165">
+                        <template slot-scope="scope">
+                            {{scope.row.create_time?scope.row.create_time.substring(0,16):'-'}}
+                        </template>
                     </el-table-column>
                     <el-table-column
                         prop="effective_date_end"

+ 3 - 0
src/views/people_manage/index.vue

@@ -101,6 +101,9 @@
                         label="创建时间"
                         sortable
                         width="160">
+                        <template slot-scope="scope">
+                            {{scope.row.create_time?scope.row.create_time.substring(0,16):'-'}}
+                        </template>
                     </el-table-column>
                     <el-table-column
                         fixed="right"