Table add prop: spanMethod
This commit is contained in:
parent
aa14a697fb
commit
55af8e86b1
2 changed files with 35 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
@mouseleave.native.stop="handleMouseOut(row._index)"
|
@mouseleave.native.stop="handleMouseOut(row._index)"
|
||||||
@click.native="clickCurrentRow(row._index)"
|
@click.native="clickCurrentRow(row._index)"
|
||||||
@dblclick.native.stop="dblclickCurrentRow(row._index)">
|
@dblclick.native.stop="dblclickCurrentRow(row._index)">
|
||||||
<td v-for="column in columns" :class="alignCls(column, row)">
|
<td v-for="(column, colIndex) in columns" :class="alignCls(column, row)" v-bind="getSpan(row, column, index, colIndex)" v-if="showWithSpan(row, column, index, colIndex)">
|
||||||
<table-cell
|
<table-cell
|
||||||
:fixed="fixed"
|
:fixed="fixed"
|
||||||
:prefix-cls="prefixCls"
|
:prefix-cls="prefixCls"
|
||||||
|
@ -104,6 +104,36 @@
|
||||||
},
|
},
|
||||||
dblclickCurrentRow (_index) {
|
dblclickCurrentRow (_index) {
|
||||||
this.$parent.dblclickCurrentRow(_index);
|
this.$parent.dblclickCurrentRow(_index);
|
||||||
|
},
|
||||||
|
getSpan (row, column, rowIndex, columnIndex) {
|
||||||
|
const fn = this.$parent.spanMethod;
|
||||||
|
if (typeof fn === 'function') {
|
||||||
|
const result = fn({
|
||||||
|
row,
|
||||||
|
column,
|
||||||
|
rowIndex,
|
||||||
|
columnIndex
|
||||||
|
});
|
||||||
|
let rowspan = 1;
|
||||||
|
let colspan = 1;
|
||||||
|
if (Array.isArray(result)) {
|
||||||
|
rowspan = result[0];
|
||||||
|
colspan = result[1];
|
||||||
|
} else if (typeof result === 'object') {
|
||||||
|
rowspan = result.rowspan;
|
||||||
|
colspan = result.colspan;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
rowspan,
|
||||||
|
colspan
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
showWithSpan (row, column, rowIndex, columnIndex) {
|
||||||
|
const result = this.getSpan(row, column, rowIndex, columnIndex);
|
||||||
|
return !(('rowspan' in result && result.rowspan === 0) || ('colspan' in result && result.colspan === 0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -209,6 +209,10 @@
|
||||||
rowKey: {
|
rowKey: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: false
|
||||||
|
},
|
||||||
|
// 4.0.0
|
||||||
|
spanMethod: {
|
||||||
|
type: Function
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue