let defalutData = [ { 'uu_type': '公司一', num: 1000, income: 1200,checked:true }, { 'uu_type': '公司二', num: 800, income: 1000,checked:true }, ]; const cols = [ { title: '公司', dataIndex: 'uu_type', width: '100px',checked:true }, { title: '人数', dataIndex: 'num', width: '100px',checked:true }, { title: '收入(千万)', dataIndex: 'income', width: '100px',checked:true }, ]; export default { defalutData, cols, };