首先在排序的时候需要远程排序,也就是后端排序,前端传字段就行了,但是我前端传完对应参数之后,发现请求回来的数据是正常的,但是页面显示不正常,结果一看出问题了
注:出了问题不要紧张,多看几遍文档,没什么大事解决不了
问题就出在这了
把sortable: true
改为sortable: 'custom'
这个就可以了
tableColumns: [
{
title: 'reviews', // 评论数
align: 'center',
sortable: 'custom', //正确应该使用这个,而不是下面的
//sortable: true,
key: 'reviews',
render: (h, { row, index, column }) => {
return h('div', row.incrementInfo[0].reviews)
},
width: 90
}
]