Blame view

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