2cb8a6d9
梁灏
commit Table comp...
|
1
|
<template>
|
45e7ed7e
梁灏
update Table
|
2
|
<div :class="wrapClasses" :style="styles">
|
39311a50
梁灏
update Table
|
3
|
<div :class="classes">
|
45e7ed7e
梁灏
update Table
|
4
5
|
<div :class="[prefixCls + '-title']" v-if="showSlotHeader" v-el:title><slot name="header"></slot></div>
<div :class="[prefixCls + '-header']" v-if="showHeader" v-el:header @mousewheel="handleMouseWheel">
|
b8a43000
梁灏
update Table
|
6
|
<table-head
|
39311a50
梁灏
update Table
|
7
8
9
10
11
|
:prefix-cls="prefixCls"
:style="tableStyle"
:columns="cloneColumns"
:obj-data="objData"
:data="rebuildData"></table-head>
|
b8a43000
梁灏
update Table
|
12
|
</div>
|
45e7ed7e
梁灏
update Table
|
13
|
<div :class="[prefixCls + '-body']" :style="bodyStyle" v-el:body @scroll="handleBodyScroll">
|
b8a43000
梁灏
update Table
|
14
|
<table-body
|
39311a50
梁灏
update Table
|
15
16
17
18
19
20
|
v-ref:tbody
:prefix-cls="prefixCls"
:style="tableStyle"
:columns="cloneColumns"
:data="rebuildData"
:obj-data="objData"></table-body>
|
b8a43000
梁灏
update Table
|
21
|
</div>
|
45e7ed7e
梁灏
update Table
|
22
23
24
|
<div :class="[prefixCls + '-fixed']">
<div :class="[prefixCls + '-fixed-header']" v-if="showHeader">
<table-head
|
39311a50
梁灏
update Table
|
25
26
27
28
29
30
|
fixed
:prefix-cls="prefixCls"
:style="fixedTableStyle"
:columns="leftFixedColumns"
:obj-data="objData"
:data="rebuildData"></table-head>
|
45e7ed7e
梁灏
update Table
|
31
32
33
|
</div>
<div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" v-el:fixed-body>
<table-body
|
39311a50
梁灏
update Table
|
34
35
36
37
38
39
|
fixed
:prefix-cls="prefixCls"
:style="fixedTableStyle"
:columns="leftFixedColumns"
:data="rebuildData"
:obj-data="objData"></table-body>
|
45e7ed7e
梁灏
update Table
|
40
|
</div>
|
b8a43000
梁灏
update Table
|
41
|
</div>
|
45e7ed7e
梁灏
update Table
|
42
43
44
|
<div :class="[prefixCls + '-fixed-right']">
<div :class="[prefixCls + '-fixed-header']" v-if="showHeader">
<table-head
|
39311a50
梁灏
update Table
|
45
46
47
48
49
50
|
fixed
:prefix-cls="prefixCls"
:style="fixedRightTableStyle"
:columns="rightFixedColumns"
:obj-data="objData"
:data="rebuildData"></table-head>
|
45e7ed7e
梁灏
update Table
|
51
52
53
|
</div>
<div :class="[prefixCls + '-fixed-body']" :style="fixedBodyStyle" v-el:fixed-right-body>
<table-body
|
39311a50
梁灏
update Table
|
54
55
56
57
58
59
|
fixed
:prefix-cls="prefixCls"
:style="fixedRightTableStyle"
:columns="rightFixedColumns"
:data="rebuildData"
:obj-data="objData"></table-body>
|
45e7ed7e
梁灏
update Table
|
60
|
</div>
|
b8a43000
梁灏
update Table
|
61
|
</div>
|
45e7ed7e
梁灏
update Table
|
62
|
<div :class="[prefixCls + '-footer']" v-if="showSlotFooter" v-el:footer><slot name="footer"></slot></div>
|
abdec99d
梁灏
update Table
|
63
|
</div>
|
2cb8a6d9
梁灏
commit Table comp...
|
64
65
66
|
</div>
</template>
<script>
|
7f34c510
梁灏
update Table
|
67
68
|
import tableHead from './table-head.vue';
import tableBody from './table-body.vue';
|
0d136465
梁灏
update Table
|
69
|
import { oneOf, getStyle, deepCopy } from '../../utils/assist';
|
2cb8a6d9
梁灏
commit Table comp...
|
70
71
72
|
const prefixCls = 'ivu-table';
export default {
|
7f34c510
梁灏
update Table
|
73
|
components: { tableHead, tableBody },
|
2cb8a6d9
梁灏
commit Table comp...
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
props: {
data: {
type: Array,
default () {
return []
}
},
columns: {
type: Array,
default () {
return []
}
},
size: {
validator (value) {
return oneOf(value, ['small', 'large']);
}
},
|
3ef4dfb9
梁灏
update Table
|
92
93
94
|
width: {
type: [Number, String]
},
|
e7e8c8ff
梁灏
update Table
|
95
96
97
|
height: {
type: [Number, String]
},
|
2cb8a6d9
梁灏
commit Table comp...
|
98
99
100
101
102
103
104
105
|
stripe: {
type: Boolean,
default: false
},
border: {
type: Boolean,
default: false
},
|
2cb8a6d9
梁灏
commit Table comp...
|
106
107
108
109
|
showHeader: {
type: Boolean,
default: true
},
|
0d136465
梁灏
update Table
|
110
|
highlightRow: {
|
2cb8a6d9
梁灏
commit Table comp...
|
111
112
|
type: Boolean,
default: false
|
e7e8c8ff
梁灏
update Table
|
113
114
115
116
117
118
|
},
rowClassName: {
type: Function,
default () {
return '';
}
|
2cb8a6d9
梁灏
commit Table comp...
|
119
120
121
122
|
}
},
data () {
return {
|
adaeca88
梁灏
update Table
|
123
|
ready: false,
|
744eb0af
梁灏
update Table comp...
|
124
125
|
tableWidth: 0,
columnsWidth: [],
|
2cb8a6d9
梁灏
commit Table comp...
|
126
|
prefixCls: prefixCls,
|
0d136465
梁灏
update Table
|
127
|
compiledUids: [],
|
35ad3764
梁灏
update Table
|
128
|
objData: this.makeObjData(), // checkbox or highlight-row
|
741b987a
梁灏
update Table
|
129
|
rebuildData: this.makeData(), // for sort or filter
|
35ad3764
梁灏
update Table
|
130
|
cloneColumns: this.makeColumns(),
|
e7e8c8ff
梁灏
update Table
|
131
132
133
|
showSlotHeader: true,
showSlotFooter: true,
bodyHeight: 0
|
2cb8a6d9
梁灏
commit Table comp...
|
134
135
136
|
}
},
computed: {
|
45e7ed7e
梁灏
update Table
|
137
138
139
140
141
142
143
144
|
wrapClasses () {
return [
`${prefixCls}-wrapper`,
{
[`${prefixCls}-hide`]: !this.ready
}
]
},
|
2cb8a6d9
梁灏
commit Table comp...
|
145
146
147
148
|
classes () {
return [
`${prefixCls}`,
{
|
0d136465
梁灏
update Table
|
149
150
|
[`${prefixCls}-${this.size}`]: !!this.size,
[`${prefixCls}-border`]: this.border,
|
e7e8c8ff
梁灏
update Table
|
151
152
153
154
|
[`${prefixCls}-stripe`]: this.stripe,
[`${prefixCls}-with-header`]: this.showSlotHeader,
[`${prefixCls}-with-footer`]: this.showSlotFooter,
[`${prefixCls}-with-fixed-top`]: !!this.height
|
2cb8a6d9
梁灏
commit Table comp...
|
155
156
|
}
]
|
0d136465
梁灏
update Table
|
157
|
},
|
e7e8c8ff
梁灏
update Table
|
158
159
160
|
styles () {
let style = {};
if (!!this.height) style.height = `${this.height}px`;
|
3ef4dfb9
梁灏
update Table
|
161
|
if (!!this.width) style.width = `${this.width}px`;
|
e7e8c8ff
梁灏
update Table
|
162
163
|
return style;
},
|
0d136465
梁灏
update Table
|
164
165
166
167
|
tableStyle () {
let style = {};
if (this.tableWidth !== 0) style.width = `${this.tableWidth}px`;
return style;
|
e7e8c8ff
梁灏
update Table
|
168
|
},
|
7f34c510
梁灏
update Table
|
169
170
171
172
173
174
175
176
177
178
|
fixedTableStyle () {
let style = {};
if (this.leftFixedColumns.length) style.width = this.leftFixedColumns.reduce((a, b) => a + b);
return style;
},
fixedRightTableStyle () {
let style = {};
if (this.rightFixedColumns.length) style.width = this.rightFixedColumns.reduce((a, b) => a + b);
return style;
},
|
e7e8c8ff
梁灏
update Table
|
179
180
181
182
|
bodyStyle () {
let style = {};
if (this.bodyHeight !== 0) style.height = `${this.bodyHeight}px`;
return style;
|
b8a43000
梁灏
update Table
|
183
184
185
186
187
|
},
fixedBodyStyle () {
let style = {};
if (this.bodyHeight !== 0) style.height = `${this.bodyHeight - 1}px`;
return style;
|
35ad3764
梁灏
update Table
|
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
},
leftFixedColumns () {
let left = [];
this.cloneColumns.forEach((col) => {
if (col.fixed && col.fixed === 'left') {
left.push(col);
}
});
return left;
},
rightFixedColumns () {
let right = [];
this.cloneColumns.forEach((col) => {
if (col.fixed && col.fixed === 'right') {
right.push(col);
}
});
return right;
|
2cb8a6d9
梁灏
commit Table comp...
|
206
207
208
|
}
},
methods: {
|
e7e8c8ff
梁灏
update Table
|
209
210
211
|
rowClsName (index) {
return this.rowClassName(this.data[index], index);
},
|
a3547c1b
梁灏
update Table
|
212
|
handleResize () {
|
2cb8a6d9
梁灏
commit Table comp...
|
213
|
this.$nextTick(() => {
|
a3547c1b
梁灏
update Table
|
214
215
216
217
218
|
const allWidth = !this.columns.some(cell => !cell.width);
if (allWidth) {
this.tableWidth = this.columns.map(cell => cell.width).reduce((a, b) => a + b);
} else {
this.tableWidth = parseInt(getStyle(this.$el, 'width')) - 1;
|
2cb8a6d9
梁灏
commit Table comp...
|
219
|
}
|
a3547c1b
梁灏
update Table
|
220
221
|
this.$nextTick(() => {
this.columnsWidth = [];
|
192e2cb8
梁灏
update Table
|
222
|
let autoWidthIndex = -1;
|
a3547c1b
梁灏
update Table
|
223
|
if (allWidth) autoWidthIndex = this.cloneColumns.findIndex(cell => !cell.width);
|
192e2cb8
梁灏
update Table
|
224
|
|
7f34c510
梁灏
update Table
|
225
|
const $td = this.$refs.tbody.$el.querySelectorAll('tbody tr')[0].querySelectorAll('td');
|
192e2cb8
梁灏
update Table
|
226
227
228
|
for (let i = 0; i < $td.length; i++) { // can not use forEach in Firefox
if (i === autoWidthIndex) {
this.columnsWidth.push(parseInt(getStyle($td[i], 'width')) - 1);
|
a3547c1b
梁灏
update Table
|
229
|
} else {
|
192e2cb8
梁灏
update Table
|
230
|
this.columnsWidth.push(parseInt(getStyle($td[i], 'width')));
|
2cb8a6d9
梁灏
commit Table comp...
|
231
|
}
|
192e2cb8
梁灏
update Table
|
232
|
}
|
744eb0af
梁灏
update Table comp...
|
233
234
235
236
237
|
});
});
},
setCellWidth (column, index) {
return column.width ? column.width : this.columnsWidth[index];
|
0d136465
梁灏
update Table
|
238
|
},
|
d3dfdb26
梁灏
update Table
|
239
240
241
|
handleMouseIn (_index) {
if (this.objData[_index]._isHover) return;
this.objData[_index]._isHover = true;
|
abdec99d
梁灏
update Table
|
242
|
},
|
d3dfdb26
梁灏
update Table
|
243
244
|
handleMouseOut (_index) {
this.objData[_index]._isHover = false;
|
abdec99d
梁灏
update Table
|
245
|
},
|
d3dfdb26
梁灏
update Table
|
246
247
|
highlightCurrentRow (_index) {
if (!this.highlightRow || this.objData[_index]._isHighlight) return;
|
0d136465
梁灏
update Table
|
248
249
|
let oldIndex = -1;
|
d3dfdb26
梁灏
update Table
|
250
251
252
253
|
for (let i in this.objData) {
if (this.objData[i]._isHighlight) {
oldIndex = parseInt(i);
this.objData[i]._isHighlight = false;
|
0d136465
梁灏
update Table
|
254
|
}
|
d3dfdb26
梁灏
update Table
|
255
256
257
258
|
}
this.objData[_index]._isHighlight = true;
const oldData = oldIndex < 0 ? null : JSON.parse(JSON.stringify(this.data[oldIndex]));
this.$emit('on-current-change', JSON.parse(JSON.stringify(this.data[_index])), oldData);
|
0d136465
梁灏
update Table
|
259
260
261
|
},
getSelection () {
let selectionIndexes = [];
|
d3dfdb26
梁灏
update Table
|
262
263
264
|
for (let i in this.objData) {
if (this.objData[i]._isChecked) selectionIndexes.push(parseInt(i));
}
|
0d136465
梁灏
update Table
|
265
266
|
return JSON.parse(JSON.stringify(this.data.filter((data, index) => selectionIndexes.indexOf(index) > -1)));
},
|
d3dfdb26
梁灏
update Table
|
267
|
toggleSelect (_index) {
|
741b987a
梁灏
update Table
|
268
269
|
let data = {};
let index = -1;
|
d3dfdb26
梁灏
update Table
|
270
271
272
273
|
for (let i in this.objData) {
if (parseInt(i) === _index) {
data = this.objData[i];
|
741b987a
梁灏
update Table
|
274
|
index = i;
|
741b987a
梁灏
update Table
|
275
276
277
|
}
}
const status = !data._isChecked;
|
d3dfdb26
梁灏
update Table
|
278
279
|
this.objData[_index]._isChecked = status;
|
0d136465
梁灏
update Table
|
280
281
282
|
const selection = this.getSelection();
if (status) {
|
741b987a
梁灏
update Table
|
283
|
this.$emit('on-select', selection, JSON.parse(JSON.stringify(this.data[_index])));
|
0d136465
梁灏
update Table
|
284
285
286
|
}
this.$emit('on-selection-change', selection);
},
|
3d9e4f20
梁灏
update Table
|
287
|
selectAll (status) {
|
6c99b9fe
梁灏
update Table
|
288
289
290
|
this.rebuildData.forEach((data) => {
this.objData[data._index]._isChecked = status;
});
|
3d9e4f20
梁灏
update Table
|
291
|
|
52874e27
梁灏
update Table
|
292
|
const selection = this.getSelection();
|
3d9e4f20
梁灏
update Table
|
293
|
if (status) {
|
52874e27
梁灏
update Table
|
294
|
this.$emit('on-select-all', selection);
|
3d9e4f20
梁灏
update Table
|
295
|
}
|
52874e27
梁灏
update Table
|
296
|
this.$emit('on-selection-change', selection);
|
e7e8c8ff
梁灏
update Table
|
297
298
299
300
301
302
303
304
305
306
|
},
fixedHeader () {
if (!!this.height) {
this.$nextTick(() => {
const titleHeight = parseInt(getStyle(this.$els.title, 'height')) || 0;
const headerHeight = parseInt(getStyle(this.$els.header, 'height')) || 0;
const footerHeight = parseInt(getStyle(this.$els.footer, 'height')) || 0;
this.bodyHeight = this.height - titleHeight - headerHeight - footerHeight;
})
}
|
abdec99d
梁灏
update Table
|
307
|
},
|
99f80db0
梁灏
update Table
|
308
309
310
|
hideColumnFilter () {
this.cloneColumns.forEach((col) => col._filterVisible = false);
},
|
192e2cb8
梁灏
update Table
|
311
|
handleBodyScroll (event) {
|
b8a43000
梁灏
update Table
|
312
313
314
|
if (this.showHeader) this.$els.header.scrollLeft = event.target.scrollLeft;
if (this.leftFixedColumns.length) this.$els.fixedBody.scrollTop = event.target.scrollTop;
if (this.rightFixedColumns.length) this.$els.fixedRightBody.scrollTop = event.target.scrollTop;
|
99f80db0
梁灏
update Table
|
315
|
this.hideColumnFilter();
|
192e2cb8
梁灏
update Table
|
316
|
},
|
3ef4dfb9
梁灏
update Table
|
317
318
319
320
321
322
323
324
325
|
handleMouseWheel (event) {
const deltaX = event.deltaX;
const $body = this.$els.body;
if (deltaX > 0) {
$body.scrollLeft = $body.scrollLeft + 10;
} else {
$body.scrollLeft = $body.scrollLeft - 10;
}
|
52874e27
梁灏
update Table
|
326
|
},
|
9f853e3e
梁灏
update Table
|
327
328
329
330
331
332
333
334
335
336
337
|
sortData (data, type, index) {
const key = this.cloneColumns[index].key;
data.sort((a, b) => {
if (this.cloneColumns[index].sortMethod) {
return this.cloneColumns[index].sortMethod(a, b);
} else {
return type === 'asc' ? a[key] > b[key] : a[key] < b[key];
}
});
return data;
},
|
52874e27
梁灏
update Table
|
338
|
handleSort (index, type) {
|
35ad3764
梁灏
update Table
|
339
340
341
|
this.cloneColumns.forEach((col) => col._sortType = 'normal');
const key = this.cloneColumns[index].key;
|
642299b9
梁灏
update Table
|
342
|
if (this.cloneColumns[index].sortable !== 'custom') { // custom is for remote sort
|
9f853e3e
梁灏
update Table
|
343
|
if (type === 'normal') {
|
97edb2eb
梁灏
update Table
|
344
|
this.rebuildData = this.makeDataWithFilter();
|
9f853e3e
梁灏
update Table
|
345
346
|
} else {
this.rebuildData = this.sortData(this.rebuildData, type, index);
|
642299b9
梁灏
update Table
|
347
|
}
|
52874e27
梁灏
update Table
|
348
|
}
|
35ad3764
梁灏
update Table
|
349
350
351
352
353
354
|
this.cloneColumns[index]._sortType = type;
this.$emit('on-sort-change', {
column: JSON.parse(JSON.stringify(this.columns[this.cloneColumns[index]._index])),
key: key,
order: type
|
9f853e3e
梁灏
update Table
|
355
|
});
|
741b987a
梁灏
update Table
|
356
|
},
|
adaeca88
梁灏
update Table
|
357
358
359
|
handleFilterHide (index) { // clear checked that not filter now
if (!this.cloneColumns[index]._isFiltered) this.cloneColumns[index]._filterChecked = [];
},
|
cb31ede0
梁灏
update Table
|
360
361
362
|
filterData (data, column) {
return data.filter((row) => {
let status = !column._filterChecked.length;
|
adaeca88
梁灏
update Table
|
363
364
365
366
367
368
|
for (let i = 0; i < column._filterChecked.length; i++) {
status = column.filterMethod(column._filterChecked[i], row);
if (status) break;
}
return status;
});
|
cb31ede0
梁灏
update Table
|
369
370
371
372
373
374
375
376
377
378
379
|
},
filterOtherData (data, index) {
this.cloneColumns.forEach((col, colIndex) => {
if (colIndex !== index) {
data = this.filterData(data, col);
}
});
return data;
},
handleFilter (index) {
const column = this.cloneColumns[index];
|
9f853e3e
梁灏
update Table
|
380
|
let filterData = this.makeDataWithSort();
|
cb31ede0
梁灏
update Table
|
381
382
383
384
385
|
// filter others first, after filter this column
filterData = this.filterOtherData(filterData, index);
this.rebuildData = this.filterData(filterData, column);
|
adaeca88
梁灏
update Table
|
386
387
388
|
this.cloneColumns[index]._isFiltered = true;
this.cloneColumns[index]._filterVisible = false;
},
|
45e7ed7e
梁灏
update Table
|
389
390
391
392
|
handleFilterSelect (index, value) {
this.cloneColumns[index]._filterChecked = [value];
this.handleFilter(index);
},
|
adaeca88
梁灏
update Table
|
393
394
|
handleFilterReset (index) {
this.cloneColumns[index]._isFiltered = false;
|
45e7ed7e
梁灏
update Table
|
395
396
|
this.cloneColumns[index]._filterVisible = false;
this.cloneColumns[index]._filterChecked = [];
|
cb31ede0
梁灏
update Table
|
397
|
|
9f853e3e
梁灏
update Table
|
398
|
let filterData = this.makeDataWithSort();
|
cb31ede0
梁灏
update Table
|
399
400
|
filterData = this.filterOtherData(filterData, index);
this.rebuildData = filterData;
|
adaeca88
梁灏
update Table
|
401
|
},
|
741b987a
梁灏
update Table
|
402
403
404
405
|
makeData () {
let data = deepCopy(this.data);
data.forEach((row, index) => row._index = index);
return data;
|
d3dfdb26
梁灏
update Table
|
406
|
},
|
9f853e3e
梁灏
update Table
|
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
makeDataWithSort () {
let data = this.makeData();
let sortType = 'normal';
let sortIndex = -1;
for (let i = 0; i < this.cloneColumns.length; i++) {
if (this.cloneColumns[i]._sortType !== 'normal') {
sortType = this.cloneColumns[i]._sortType;
sortIndex = i;
break;
}
}
if (sortType !== 'normal') data = this.sortData(data, sortType, sortIndex);
return data;
},
|
97edb2eb
梁灏
update Table
|
421
422
423
424
425
426
427
428
429
430
|
makeDataWithFilter () {
let data = this.makeData();
this.cloneColumns.forEach(col => data = this.filterData(data, col));
return data;
},
makeDataWithSortAndFilter () {
let data = this.makeDataWithSort();
this.cloneColumns.forEach(col => data = this.filterData(data, col));
return data;
},
|
d3dfdb26
梁灏
update Table
|
431
432
433
434
435
436
437
438
439
440
|
makeObjData () {
let data = {};
this.data.forEach((row, index) => {
const newRow = deepCopy(row);// todo 直接替换
newRow._isHover = false;
newRow._isChecked = false;
newRow._isHighlight = false;
data[index] = newRow;
});
return data;
|
35ad3764
梁灏
update Table
|
441
442
443
444
445
446
447
448
|
},
makeColumns () {
let columns = deepCopy(this.columns);
let left = [];
let right = [];
let center = [];
columns.forEach((column, index) => {
|
35ad3764
梁灏
update Table
|
449
|
column._index = index;
|
99f80db0
梁灏
update Table
|
450
451
452
453
|
column._sortType = 'normal';
column._filterVisible = false;
column._isFiltered = false;
column._filterChecked = [];
|
35ad3764
梁灏
update Table
|
454
|
|
adaeca88
梁灏
update Table
|
455
456
457
458
459
460
|
if ('filterMultiple' in column) {
column._filterMultiple = column.filterMultiple;
} else {
column._filterMultiple = true;
}
|
35ad3764
梁灏
update Table
|
461
462
463
464
465
466
467
468
469
|
if (column.fixed && column.fixed === 'left') {
left.push(column);
} else if (column.fixed && column.fixed === 'right') {
right.push(column);
} else {
center.push(column);
}
});
return left.concat(center).concat(right);
|
2cb8a6d9
梁灏
commit Table comp...
|
470
471
|
}
},
|
e7e8c8ff
梁灏
update Table
|
472
|
compiled () {
|
e7e8c8ff
梁灏
update Table
|
473
474
475
|
this.showSlotHeader = this.$els.title.innerHTML.replace(/\n/g, '').replace(/<!--[\w\W\r\n]*?-->/gmi, '') !== '';
this.showSlotFooter = this.$els.footer.innerHTML.replace(/\n/g, '').replace(/<!--[\w\W\r\n]*?-->/gmi, '') !== '';
},
|
2cb8a6d9
梁灏
commit Table comp...
|
476
|
ready () {
|
a3547c1b
梁灏
update Table
|
477
|
this.handleResize();
|
e7e8c8ff
梁灏
update Table
|
478
|
this.fixedHeader();
|
adaeca88
梁灏
update Table
|
479
|
this.$nextTick(() => this.ready = true);
|
744eb0af
梁灏
update Table comp...
|
480
481
482
483
|
window.addEventListener('resize', this.handleResize, false);
},
beforeDestroy () {
window.removeEventListener('resize', this.handleResize, false);
|
2cb8a6d9
梁灏
commit Table comp...
|
484
485
486
487
|
},
watch: {
data: {
handler () {
|
d3dfdb26
梁灏
update Table
|
488
|
this.objData = this.makeObjData();
|
97edb2eb
梁灏
update Table
|
489
|
this.rebuildData = this.makeDataWithSortAndFilter();
|
a3547c1b
梁灏
update Table
|
490
|
this.handleResize();
|
2cb8a6d9
梁灏
commit Table comp...
|
491
492
493
494
495
|
},
deep: true
},
columns: {
handler () {
|
35ad3764
梁灏
update Table
|
496
|
this.cloneColumns = this.makeColumns();
|
97edb2eb
梁灏
update Table
|
497
|
this.rebuildData = this.makeDataWithSortAndFilter();
|
a3547c1b
梁灏
update Table
|
498
|
this.handleResize();
|
2cb8a6d9
梁灏
commit Table comp...
|
499
500
|
},
deep: true
|
e7e8c8ff
梁灏
update Table
|
501
502
503
|
},
height () {
this.fixedHeader();
|
2cb8a6d9
梁灏
commit Table comp...
|
504
505
506
507
|
}
}
}
</script>
|