修改时间格式化
This commit is contained in:
@@ -279,6 +279,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import TableHelper from '@/utils/bootstrap-table-helper';
|
import TableHelper from '@/utils/bootstrap-table-helper';
|
||||||
|
import { formatTime } from '@/utils/maintainer';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "WithdrawUserView",
|
name: "WithdrawUserView",
|
||||||
@@ -314,7 +315,15 @@ export default {
|
|||||||
return value;
|
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,
|
cache: false,
|
||||||
striped: true,
|
striped: true,
|
||||||
|
Reference in New Issue
Block a user