修改时间格式化
This commit is contained in:
@@ -279,6 +279,7 @@
|
||||
|
||||
<script>
|
||||
import TableHelper from '@/utils/bootstrap-table-helper';
|
||||
import { formatTime } from '@/utils/maintainer';
|
||||
|
||||
export default {
|
||||
name: "WithdrawUserView",
|
||||
@@ -314,7 +315,15 @@ export default {
|
||||
return value;
|
||||
}
|
||||
},
|
||||
{ field: 'updateTime', title: '修改时间', align: 'center', width: '5%' },
|
||||
{
|
||||
field: 'updateTime',
|
||||
title: '修改时间',
|
||||
align: 'center',
|
||||
width: '5%',
|
||||
formatter: function (val, row, index) {
|
||||
return formatTime(val);
|
||||
}
|
||||
},
|
||||
],
|
||||
cache: false,
|
||||
striped: true,
|
||||
|
Reference in New Issue
Block a user