|
@@ -101,8 +101,16 @@
|
|
|
:show-overflow-tooltip="true"
|
|
|
width="130"
|
|
|
/>
|
|
|
- <el-table-column label="创建时间" align="center" prop="createdAt" width="160" />
|
|
|
- <el-table-column label="更新时间" align="center" prop="updatedAt" width="160" />
|
|
|
+ <el-table-column label="创建时间" align="center" prop="createdAt" width="160">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createdAt) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="更新时间" align="center" prop="updatedAt" width="160">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.updatedAt) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|