1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
| <template>
| <div class="app-container">
|
| <el-tag style="margin-bottom:20px;">
| <a href="https:// github.com/PanJiaChen/vue-element-admin/tree/master/src/components/TreeTable" target="_blank">Documentation</a>
| </el-tag>
|
| <tree-table :data="data" :columns="columns" border/>
|
| </div>
| </template>
|
| <script>
| /* *
| Auth: Lei.j1ang
| Created: 2018/1/19-14:54
| */
| import treeTable from "@/components/TreeTable";
|
| export default {
| name: "TreeTableDemo",
| components: { treeTable },
| data() {
| return {
| columns: [
| {
| text: "事件",
| value: "event",
| width: 200
| },
| {
| text: "ID",
| value: "id"
| },
| {
| text: "时间线",
| value: "timeLine"
| },
| {
| text: "备注",
| value: "comment"
| }
| ],
| data: [
| {
| id: 0,
| event: "事件1",
| timeLine: 50,
| comment: "无"
| },
| {
| id: 1,
| event: "事件1",
| timeLine: 100,
| comment: "无",
| children: [
| {
| id: 2,
| event: "事件2",
| timeLine: 10,
| comment: "无"
| },
| {
| id: 3,
| event: "事件3",
| timeLine: 90,
| comment: "无",
| children: [
| {
| id: 4,
| event: "事件4",
| timeLine: 5,
| comment: "无"
| },
| {
| id: 5,
| event: "事件5",
| timeLine: 10,
| comment: "无"
| },
| {
| id: 6,
| event: "事件6",
| timeLine: 75,
| comment: "无",
| children: [
| {
| id: 7,
| event: "事件7",
| timeLine: 50,
| comment: "无",
| children: [
| {
| id: 71,
| event: "事件71",
| timeLine: 25,
| comment: "xx"
| },
| {
| id: 72,
| event: "事件72",
| timeLine: 5,
| comment: "xx"
| },
| {
| id: 73,
| event: "事件73",
| timeLine: 20,
| comment: "xx"
| }
| ]
| },
| {
| id: 8,
| event: "事件8",
| timeLine: 25,
| comment: "无"
| }
| ]
| }
| ]
| }
| ]
| }
| ]
| };
| }
| };
| </script>
|
|