{
title: '状态',
dataIndex: 'status',
render: (text, row) => {
let arr = ['', '未开始', '进行中', '已结束', '已作废'];
return <span>{arr[text]}</span>;
},
},