-
Notifications
You must be signed in to change notification settings - Fork 2
Tree
hmhao edited this page Aug 19, 2017
·
3 revisions
-
nodes: Array<Object>
// 树节点-
nodes: Array<Object>
// 树子节点 -
text: String
// 树节点文本 -
state: String
// 树节点状态,可选值expand
和collapse
-
-
$nodeIcon
: String // 节点图标class
,默认值''
-
$checkbox
: Boolean // 节点是否带checkbox
,默认值false
-
$checkedIcon
: String // 选中的复选框图标class
,默认值icon-check
-
$uncheckedIcon
: String // 没选中的复选框图标class
,默认值icon-unchecked
-
$expandIcon
: String // 展开图标class
,默认值icon-minus
-
$collapseIcon
: String // 收起图标class
,默认值icon-plus
-
$cascadeCheck
: Boolean // 是否级联检查,默认值true
-
getSelected()
// 获取选中的节点 -
getParents(node)
// 获取指定节点node
的父节点 -
getNode(path)
// 获取指定path
的节点 -
expandNode(node)
// 展开指定node
-
collapseNode(node)
// 收起指定node
-
toggleSelect(node)
// 展开或收起指定node
onBeforeSelect
onSelect
onBeforeExpand
onExpand
onBeforeCollapse
onCollapse
onCheck