Commit 5c82e18d authored by mzx's avatar mzx

feat: 修改bug(信息库统一修改时间格式)

parent 7fdf4f7f
......@@ -89,7 +89,7 @@
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime) }}</span>
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}') }}</span>
</template>
</el-table-column>
</el-table>
......
......@@ -103,7 +103,7 @@
sortable
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.storageTime) }}</span>
<span>{{ parseTime(scope.row.storageTime, '{y}-{m}-{d} {h}') }}</span>
</template>
</el-table-column>
</el-table>
......
......@@ -47,6 +47,9 @@
<!-- >-->
<!-- </el-table-column>-->
<el-table-column label="更新时间" align="left" sortable prop="createTime">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}') }}</span>
</template>
</el-table-column>
<el-table-column
label="操作"
......
......@@ -104,7 +104,7 @@
sortable
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.storageTime) }}</span>
<span>{{ parseTime(scope.row.storageTime, '{y}-{m}-{d} {h}') }}</span>
</template>
</el-table-column>
</el-table>
......
......@@ -99,7 +99,7 @@
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime) }}</span>
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}') }}</span>
</template>
</el-table-column>
</el-table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment