doc(atree): update 2.0.0-beta

This commit is contained in:
smallwei 2018-07-19 21:03:04 +08:00
parent ea24b7635d
commit e84d5c32fa
2 changed files with 25 additions and 1 deletions

24
doc/atree.md Normal file
View File

@ -0,0 +1,24 @@
# atree2.0.0属性含义
* spreadAll 设置checkbox全部选中
* check勾选风格不写没有勾选框
* props 设置key属性别名
- addBtnLabel新增按钮标题
- deleteBtnLabel删除按钮标题
- name树显示的标题
- id主键对应的字段名
- children子类对应的字段名
- checkbox选中对应的字段名
- spread是否展开对应的字段名
* change选中回调函数
- val选中的对象数组
* click点击标题回调函数
- item当前点击的对象
* addClick新增回调函数
- item当前父节点的对象
- elem当前节点的dom对象
- done添加到dom节点的方法
* deleteClick删除回调函数
- item当前父节点的对象
- elem当前节点的dom对象
- done删除dom节点的方法

View File

@ -68,7 +68,7 @@
console.groupEnd()
},
deleteClick:function(item,elem,done){
console.group('delete event')
console.group('delete event')
console.log('Object')
console.log(item);
console.log('dom')