sunlupeng 1 rok temu
rodzic
commit
858f6f56aa
1 zmienionych plików z 6 dodań i 2 usunięć
  1. 6 2
      src/views/meeting/reserveList/index.vue

+ 6 - 2
src/views/meeting/reserveList/index.vue

@@ -45,8 +45,12 @@
           <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
         </template>
       </el-table-column>
-      <el-table-column label="创建时间" align="center" prop="createTime" />
-      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+      <el-table-column label="创建时间" align="center" prop="createTime" width="180">
+      <template v-slot="scope">
+            <span>{{ parseTime(scope.row.createTime) }}</span>
+          </template>
+      </el-table-column>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180">
         <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
             v-hasPermi="['meeting:reserveList:update']">修改</el-button>