1 首先要拿到 后端请求的数据 dataSource
2 再通过 customRender函数 循环dataSource取到想要的数据
{
title:'浏览/同意/拒绝次数',
align:"center",
dataIndex: 'viewCount',
customRender: (t, r, index)=> {
let dataList = this.dataSource;
console.log(dataList,'----list表数据',index,r,t)
// if(index === 0){
for(let i=0;i return dataList[i].viewCount+'/'+dataList[i].agreeCount+'/'+dataList[i].refuseCount // return corpList[i].shortName //} } } },