diff --git a/HARD b/HARD
new file mode 100644
index 0000000..e69de29
diff --git a/examples/atree.html b/examples/atree.html
new file mode 100644
index 0000000..b8b27f5
--- /dev/null
+++ b/examples/atree.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+ 树模块 - layui
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/examples/tree.html b/examples/tree.html
index ea5f801..49449c3 100644
--- a/examples/tree.html
+++ b/examples/tree.html
@@ -1,182 +1,147 @@
-
-
-
- 树模块 - layui
+
+
+树模块 - layui
-
+
-
+
-
-
+
-
+
-
-
+
+ }
+ return arr;
+ }();
+ start = start || 1;
+ layui.each(node, function(index, item){
+ if(start < 10 && index < 9){
+ var child = [
+ {
+ name: (1 + index + start).toString().replace(/(\d)/, '$1$1$1$1$1$1$1$1$1')
+ }
+ ];
+ node[index].children = child;
+ createTree(child, index + start + 1);
+ }
+ });
+ return node;
+ };
-
+ layui.tree({
+ elem: '#demo1' //指定元素
+ ,nodes: createTree()
+ });
+
+});
+
+
+
+# layui.tree-v2 备忘
+* check参数 - checkbox、radio的支持
+* 拖拽的支持
+
-
-
\ No newline at end of file
+