新增回调函数(sorterClick)

This commit is contained in:
jonyshi 2018-07-16 16:19:51 +08:00
parent 928512af31
commit 30e8f11424
1 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/** /**
* *
* @title 列排序全选功能合计 * @title 列排序全选功能合计
* @description 列排序全选功能合计通过使用的封装好的功能方法实现复杂功能简单易用 * @description 列排序全选功能合计通过使用的封装好的功能方法实现复杂功能简单易用新增回调函数(sorterClick)
* *
*/ */
@ -33,7 +33,10 @@ const columns13 = [
key: "c", key: "c",
width: 200, width: 200,
sumCol: true, sumCol: true,
sorter: (a, b) => a.c - b.c sorter: (a, b) => a.c - b.c,
sorterClick:data=>{//排序的回调函数
console.log("data",data);
}
}, },
{ {
title: "武功级别", title: "武功级别",