修复时间展示有误的bug,由原先的12小时制改为24小时制

This commit is contained in:
chenzy
2022-10-16 22:57:50 +08:00
committed by EricZeng
parent 44134ce0d6
commit 2f0b18b005

View File

@@ -138,7 +138,7 @@ const CardBar = (props: CardBarProps) => {
dataIndex: 'updateTime',
key: 'updateTime',
render: (value: number) => {
return moment(value).format('YYYY-MM-DD hh:mm:ss');
return moment(value).format('YYYY-MM-DD HH:mm:ss');
},
},
{