|
@@ -141,19 +141,28 @@ export default {
|
|
title: '注册时间',
|
|
title: '注册时间',
|
|
dataIndex: 'registerTime',
|
|
dataIndex: 'registerTime',
|
|
width: 200,
|
|
width: 200,
|
|
- align: 'center'
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
+ customRender: (text) => {
|
|
|
|
+ return text || '--'
|
|
|
|
+ }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '最后登录时间',
|
|
title: '最后登录时间',
|
|
dataIndex: 'lastLoginTime',
|
|
dataIndex: 'lastLoginTime',
|
|
width: 200,
|
|
width: 200,
|
|
- align: 'center'
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
+ customRender: (text) => {
|
|
|
|
+ return text || '--'
|
|
|
|
+ }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '最后投递时间',
|
|
title: '最后投递时间',
|
|
dataIndex: 'lastDeliveryTime',
|
|
dataIndex: 'lastDeliveryTime',
|
|
width: 200,
|
|
width: 200,
|
|
- align: 'center'
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
+ customRender: (text) => {
|
|
|
|
+ return text || '--'
|
|
|
|
+ }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '状态',
|
|
title: '状态',
|