sortable: "custom"

This commit is contained in:
shijingjing
2022-08-18 11:45:46 +08:00
parent 3f9deb61f0
commit 378c634c4a

View File

@@ -124,9 +124,9 @@ export default {
return [ return [
{ prop: "userName", label: '姓名', align: "left", }, { prop: "userName", label: '姓名', align: "left", },
{ prop: "girdName", label: '所属网格' }, { prop: "girdName", label: '所属网格' },
{ prop: "integral", label: '积分余额', align: "center", sortable: true }, { prop: "integral", label: '积分余额', align: "center", sortable: "custom" },
{ prop: "totalIntegral", label: '累计积分', align: "center", sortable: true }, { prop: "totalIntegral", label: '累计积分', align: "center", sortable: "custom" },
{ prop: "usedIntegral", label: '已用积分', align: "center", sortable: true }, { prop: "usedIntegral", label: '已用积分', align: "center", sortable: "custom" },
{ slot: "options" }, { slot: "options" },
] ]
}, },