2cb8a6d9
梁灏
commit Table comp...
|
1
|
<template>
|
7f34c510
梁灏
update Table
|
2
3
|
<table cellspacing="0" cellpadding="0" border="0" :style="style">
<colgroup>
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
4
|
<col v-for="column in columns" :width="setCellWidth(column, $index)">
|
7f34c510
梁灏
update Table
|
5
6
7
|
</colgroup>
<thead>
<tr>
|
45e7ed7e
梁灏
update Table
|
8
|
<th v-for="(index, column) in columns" :class="alignCls(column)">
|
c6f21c2f
jingsam
fix ie bug
|
9
|
<div :class="cellClasses(column)">
|
7f34c510
梁灏
update Table
|
10
|
<template v-if="column.type === 'selection'"><Checkbox :checked="isSelectAll" @on-change="selectAll"></Checkbox></template>
|
52874e27
梁灏
update Table
|
11
12
13
|
<template v-else>
{{{ renderHeader(column, $index) }}}
<span :class="[prefixCls + '-sort']" v-if="column.sortable">
|
35ad3764
梁灏
update Table
|
14
15
|
<i class="ivu-icon ivu-icon-arrow-up-b" :class="{on: column._sortType === 'asc'}" @click="handleSort($index, 'asc')"></i>
<i class="ivu-icon ivu-icon-arrow-down-b" :class="{on: column._sortType === 'desc'}" @click="handleSort($index, 'desc')"></i>
|
52874e27
梁灏
update Table
|
16
|
</span>
|
adaeca88
梁灏
update Table
|
17
|
<Poptip
|
5d0499ce
梁灏
update Table
|
18
|
v-if="isPopperShow(column)"
|
adaeca88
梁灏
update Table
|
19
20
21
|
:visible.sync="column._filterVisible"
placement="bottom"
@on-popper-hide="handleFilterHide($index)">
|
642299b9
梁灏
update Table
|
22
|
<span :class="[prefixCls + '-filter']">
|
99f80db0
梁灏
update Table
|
23
|
<i class="ivu-icon ivu-icon-funnel" :class="{on: column._isFiltered}"></i>
|
642299b9
梁灏
update Table
|
24
|
</span>
|
adaeca88
梁灏
update Table
|
25
|
<div slot="content" :class="[prefixCls + '-filter-list']" v-if="column._filterMultiple">
|
99f80db0
梁灏
update Table
|
26
27
28
29
30
|
<div :class="[prefixCls + '-filter-list-item']">
<checkbox-group :model.sync="column._filterChecked">
<checkbox v-for="item in column.filters" :value="item.value">{{ item.label }}</checkbox>
</checkbox-group>
</div>
|
99f80db0
梁灏
update Table
|
31
|
<div :class="[prefixCls + '-filter-footer']">
|
adaeca88
梁灏
update Table
|
32
|
<i-button type="text" size="small" :disabled="!column._filterChecked.length" @click="handleFilter($index)">筛选</i-button>
|
99f80db0
梁灏
update Table
|
33
34
|
<i-button type="text" size="small" @click="handleReset($index)">重置</i-button>
</div>
|
642299b9
梁灏
update Table
|
35
|
</div>
|
adaeca88
梁灏
update Table
|
36
37
|
<div slot="content" :class="[prefixCls + '-filter-list']" v-else>
<ul>
|
45e7ed7e
梁灏
update Table
|
38
39
40
41
42
43
44
|
<li
:class="[prefixCls + '-filter-select-item', {[prefixCls + '-filter-select-item-selected']: !column._filterChecked.length}]"
@click="handleReset($index)">全部</li>
<li
:class="[prefixCls + '-filter-select-item', {[prefixCls + '-filter-select-item-selected']: column._filterChecked[0] === item.value}]"
v-for="item in column.filters"
@click="handleSelect(index, item.value)">{{ item.label }}</li>
|
adaeca88
梁灏
update Table
|
45
46
|
</ul>
</div>
|
642299b9
梁灏
update Table
|
47
|
</Poptip>
|
52874e27
梁灏
update Table
|
48
|
</template>
|
7f34c510
梁灏
update Table
|
49
50
51
52
53
|
</div>
</th>
</tr>
</thead>
</table>
|
2cb8a6d9
梁灏
commit Table comp...
|
54
55
|
</template>
<script>
|
99f80db0
梁灏
update Table
|
56
|
import CheckboxGroup from '../checkbox/checkbox-group.vue';
|
0d136465
梁灏
update Table
|
57
|
import Checkbox from '../checkbox/checkbox.vue';
|
642299b9
梁灏
update Table
|
58
|
import Poptip from '../poptip/poptip.vue';
|
99f80db0
梁灏
update Table
|
59
|
import iButton from '../button/button.vue';
|
0d136465
梁灏
update Table
|
60
61
62
|
import Mixin from './mixin';
import { deepCopy } from '../../utils/assist';
|
2cb8a6d9
梁灏
commit Table comp...
|
63
|
export default {
|
0d136465
梁灏
update Table
|
64
|
mixins: [ Mixin ],
|
99f80db0
梁灏
update Table
|
65
|
components: { CheckboxGroup, Checkbox, Poptip, iButton },
|
2cb8a6d9
梁灏
commit Table comp...
|
66
67
|
props: {
prefixCls: String,
|
7f34c510
梁灏
update Table
|
68
|
style: Object,
|
0d136465
梁灏
update Table
|
69
|
columns: Array,
|
d3dfdb26
梁灏
update Table
|
70
|
objData: Object,
|
6c99b9fe
梁灏
update Table
|
71
|
data: Array, // rebuildData
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
72
|
columnsWidth: Object,
|
5d0499ce
梁灏
update Table
|
73
74
75
76
|
fixed: {
type: [Boolean, String],
default: false
}
|
2cb8a6d9
梁灏
commit Table comp...
|
77
|
},
|
2cb8a6d9
梁灏
commit Table comp...
|
78
|
computed: {
|
0d136465
梁灏
update Table
|
79
|
isSelectAll () {
|
d3dfdb26
梁灏
update Table
|
80
|
let isSelectAll = true;
|
6c99b9fe
梁灏
update Table
|
81
82
83
84
85
86
|
for (let i = 0; i < this.data.length; i++) {
if (!this.objData[this.data[i]._index]._isChecked) {
isSelectAll = false;
break;
}
|
d3dfdb26
梁灏
update Table
|
87
88
89
|
}
return isSelectAll;
|
0d136465
梁灏
update Table
|
90
|
}
|
2cb8a6d9
梁灏
commit Table comp...
|
91
92
|
},
methods: {
|
c6f21c2f
jingsam
fix ie bug
|
93
94
95
96
97
98
99
100
|
cellClasses (column) {
return [
`${this.prefixCls}-cell`,
{
[`${this.prefixCls}-hidden`]: !this.fixed && column.fixed && (column.fixed === 'left' || column.fixed === 'right')
}
]
},
|
2cb8a6d9
梁灏
commit Table comp...
|
101
102
103
104
105
106
|
renderHeader (column, $index) {
if ('renderHeader' in this.columns[$index]) {
return this.columns[$index].renderHeader(column, $index);
} else {
return column.title || '#';
}
|
744eb0af
梁灏
update Table comp...
|
107
|
},
|
0d136465
梁灏
update Table
|
108
109
|
selectAll () {
const status = !this.isSelectAll;
|
3d9e4f20
梁灏
update Table
|
110
|
this.$parent.selectAll(status);
|
52874e27
梁灏
update Table
|
111
|
},
|
35ad3764
梁灏
update Table
|
112
113
114
|
handleSort (index, type) {
if (this.columns[index]._sortType === type) {
type = 'normal';
|
741b987a
梁灏
update Table
|
115
|
}
|
35ad3764
梁灏
update Table
|
116
|
this.$parent.handleSort(index, type);
|
642299b9
梁灏
update Table
|
117
118
|
},
handleFilter (index) {
|
adaeca88
梁灏
update Table
|
119
|
this.$parent.handleFilter(index);
|
99f80db0
梁灏
update Table
|
120
|
},
|
45e7ed7e
梁灏
update Table
|
121
122
123
|
handleSelect (index, value) {
this.$parent.handleFilterSelect(index, value);
},
|
99f80db0
梁灏
update Table
|
124
|
handleReset (index) {
|
adaeca88
梁灏
update Table
|
125
|
this.$parent.handleFilterReset(index);
|
99f80db0
梁灏
update Table
|
126
|
},
|
adaeca88
梁灏
update Table
|
127
128
|
handleFilterHide (index) {
this.$parent.handleFilterHide(index);
|
2cb8a6d9
梁灏
commit Table comp...
|
129
130
131
|
}
}
}
|
39311a50
梁灏
update Table
|
132
|
</script>
|