Commit c7c2c4e7 by yuananting

fix:后端创建时间默认值约定修改

parent 2e4bb48e
......@@ -299,7 +299,7 @@ class LiveCourseList extends React.Component {
dataIndex: 'created',
sorter: true,
render: (val, item) => {
return <span>{val === 0 ? '-' : formatDate('YYYY-MM-DD H:i', val)}</span>;
return <span>{val === -29000 ? '-' : formatDate('YYYY-MM-DD H:i', val)}</span>;
},
},
{
......
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