问题阐述:本来是要做表格合并的,并且还需要对上面的文字做处理的,类似功能有:合并首列,在文字前面加一个单选框
scopedSlots和customRender不能同时使用
columns: [
{
title: "PRODUCT",
dataIndex: "PRODUCT",
// scopedSlots: { customRender: "action" },
customRender: (text, row, index) => {
const obj = {
children: (<a href="#" id='queryChildList'>{text}</a>),
attrs: {},
};
obj.attrs.rowSpan = row.mergeRowSpan; //row.mergeRowSpan 是合并几行
return obj;
},
}
]
customRender中的children里面使用的是jsx语法,所以不能使用vue中的v-if条件判断