-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
149 lines (135 loc) · 2.29 KB
/
index.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/**
*
* @authors ${author} (${email})
* @date 2018-11-14
* @version $Id$
*/
var snabbdom = SnabbdomModule;
var patch = snabbdom.init([
DatasetModule,
ClassModule,
AttributesModule,
PropsModule,
StyleModule,
EventlistenerModule
])
var h = HModule.h;
var app = document.getElementById('app');
var string = []
var vnode;
var data = {
info: [{
name: "liuzj",
age: 25
}, {
name: "lzj",
age: 30
}, {
name: "nzj",
age: 29
}]
}
function render(data) {
return h('table.table', {
vClass: {
'active': true
},
attrs: {
cellpadding: 0,
cellspacing: 0
}
}, [
h('thead.thead', {}, [
h('tr', {}, [
h('th', {
style: {
width: "200px"
},
dataset: {
name: "liuzj"
}
}, '姓名'),
h('th', {
style: {
width: "200px"
}
}, ['年龄', h('img#Sort_Down.sort', {
attrs: {
src: './src/img/Sort_Down.png'
},
style: {
marginLeft: '5px',
marginRight: '3px',
},
on: {
click: [sort, 'down']
}
}), h('img#Sort_Up.sort', {
attrs: {
src: './src/img/Sort_Up.png'
},
on: {
click: [sort, 'up']
}
})]),
h('th', {
style: {
width: "450px"
}
}, '操作')
])
]),
h('tbody.tbody', {}, tbodyRender(data))
]);
}
function sort(type) {
if (type == 'up') {
data.info.sort(function(a, b) {
return parseInt(a.age) - parseInt(b.age);
})
} else {
data.info.sort(function(a, b) {
return parseInt(b.age) - parseInt(a.age);
})
}
vnode = patch(vnode, render(data))
}
function tbodyRender(data) {
var trArray = [];
var len = data.info.length;
data.info.forEach(function(item, index) {
var tdArray = []
var td = h('td', {
style: {
width: "200px"
}
}, item.name);
tdArray.push(td);
var td = h('td', {
style: {
width: "200px"
}
}, item.age);
tdArray.push(td);
var td = h('td', {
style: {
width: "450px"
}
}, [h('button.btn', {
on: {
'click': [function(name) {
data.info = data.info.filter(function(item) {
return item.name != name
})
vnode = patch(vnode, render(data));
}, item.name]
}
}, '删除')]);
tdArray.push(td);
trArray[index] = h('tr', {
key: item
}, tdArray)
})
return trArray;
}
var vnode = patch(app, render(data));