2cb8a6d9
梁灏
commit Table comp...
|
1
|
<template>
|
7f34c510
梁灏
update Table
|
2
3
|
<table cellspacing="0" cellpadding="0" border="0" :style="style">
<colgroup>
|
3d6fa54b
梁灏
update Table
|
4
|
<col v-for="column in columns" :width="setCellWidth(column, $index, false)">
|
7f34c510
梁灏
update Table
|
5
6
7
|
</colgroup>
<tbody :class="[prefixCls + '-tbody']">
<tr
|
741b987a
梁灏
update Table
|
8
|
v-for="(index, row) in data"
|
d3dfdb26
梁灏
update Table
|
9
10
11
|
:class="rowClasses(row._index)"
@mouseenter.stop="handleMouseIn(row._index)"
@mouseleave.stop="handleMouseOut(row._index)"
|
da55375f
Rijn
Added click and d...
|
12
13
|
@click.stop="clickCurrentRow(row._index)"
@dblclick.stop="dblclickCurrentRow(row._index)">
|
891700ae
梁灏
update Table
|
14
|
<td v-for="column in columns" :class="alignCls(column, row)">
|
7f34c510
梁灏
update Table
|
15
16
17
18
19
|
<Cell
:fixed="fixed"
:prefix-cls="prefixCls"
:row="row"
:column="column"
|
741b987a
梁灏
update Table
|
20
21
|
:natural-index="index"
:index="row._index"
|
0dcc9482
leonine
itable 添加禁用某行选中的功能
|
22
23
24
|
:checked="rowChecked(row._index)"
:disabled="rowDisabled(row._index)"
></Cell>
|
7f34c510
梁灏
update Table
|
25
26
27
|
</td>
</tr>
</tbody>
|
3ef4dfb9
梁灏
update Table
|
28
|
</table>
|
2cb8a6d9
梁灏
commit Table comp...
|
29
30
|
</template>
<script>
|
7f34c510
梁灏
update Table
|
31
32
33
|
import Cell from './cell.vue';
import Mixin from './mixin';
|
2cb8a6d9
梁灏
commit Table comp...
|
34
|
export default {
|
7f34c510
梁灏
update Table
|
35
36
|
mixins: [ Mixin ],
components: { Cell },
|
2cb8a6d9
梁灏
commit Table comp...
|
37
|
props: {
|
7f34c510
梁灏
update Table
|
38
39
40
|
prefixCls: String,
style: Object,
columns: Array,
|
741b987a
梁灏
update Table
|
41
|
data: Array, // rebuildData
|
741b987a
梁灏
update Table
|
42
|
objData: Object,
|
224a3ae5
梁灏
publish 0.9.9-rc-3
|
43
|
columnsWidth: Object,
|
5d0499ce
梁灏
update Table
|
44
45
46
47
|
fixed: {
type: [Boolean, String],
default: false
}
|
2cb8a6d9
梁灏
commit Table comp...
|
48
49
|
},
methods: {
|
d3dfdb26
梁灏
update Table
|
50
|
rowClasses (_index) {
|
c6f21c2f
jingsam
fix ie bug
|
51
52
|
return [
`${this.prefixCls}-row`,
|
741b987a
梁灏
update Table
|
53
|
this.rowClsName(_index),
|
c6f21c2f
jingsam
fix ie bug
|
54
|
{
|
97edb2eb
梁灏
update Table
|
55
|
[`${this.prefixCls}-row-highlight`]: this.objData[_index] && this.objData[_index]._isHighlight,
|
87379c82
leonine
去掉禁用行的 tr>td 的dis...
|
56
|
[`${this.prefixCls}-row-hover`]: this.objData[_index] && this.objData[_index]._isHover
|
c6f21c2f
jingsam
fix ie bug
|
57
|
}
|
b0893113
jingsam
add eslint
|
58
|
];
|
c6f21c2f
jingsam
fix ie bug
|
59
|
},
|
d3dfdb26
梁灏
update Table
|
60
|
rowChecked (_index) {
|
97edb2eb
梁灏
update Table
|
61
|
return this.objData[_index] && this.objData[_index]._isChecked;
|
741b987a
梁灏
update Table
|
62
|
},
|
0dcc9482
leonine
itable 添加禁用某行选中的功能
|
63
64
65
|
rowDisabled(_index){
return this.objData[_index] && this.objData[_index]._isDisabled;
},
|
d3dfdb26
梁灏
update Table
|
66
67
|
rowClsName (_index) {
return this.$parent.rowClassName(this.objData[_index], _index);
|
7f34c510
梁灏
update Table
|
68
|
},
|
d3dfdb26
梁灏
update Table
|
69
70
|
handleMouseIn (_index) {
this.$parent.handleMouseIn(_index);
|
7f34c510
梁灏
update Table
|
71
|
},
|
d3dfdb26
梁灏
update Table
|
72
73
|
handleMouseOut (_index) {
this.$parent.handleMouseOut(_index);
|
7f34c510
梁灏
update Table
|
74
|
},
|
da55375f
Rijn
Added click and d...
|
75
76
77
78
79
|
clickCurrentRow (_index) {
this.$parent.clickCurrentRow(_index);
},
dblclickCurrentRow (_index) {
this.$parent.dblclickCurrentRow(_index);
|
7f34c510
梁灏
update Table
|
80
|
}
|
2cb8a6d9
梁灏
commit Table comp...
|
81
|
}
|
b0893113
jingsam
add eslint
|
82
83
|
};
</script>
|