@@ -131,12 +131,15 @@
dataIndex: 'dictName',
width: 80,
},
- // {
- // title: '场景码',
- // dataIndex: 'num',
- // ellipsis: true,
- // width: 180,
- // },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ ellipsis: true,
+ customRender: ({ record }) => {
+ return record.status == -1 ? '上传失败' : record.status == 0 ? '上传中' : '上传成功'
+ },
+ width: 180,
{
title: '上传时间',
dataIndex: 'createTime',