Update table-body.vue

This commit is contained in:
梁灏 2020-07-02 10:03:56 +08:00
parent 83e7c64fec
commit 604cf463ac

View file

@ -119,6 +119,12 @@
if (this.$parent.contextMenu) event.preventDefault();
this.$parent.contextmenuCurrentRow(_index, rowKey, event);
},
selectStartCurrentRow (_index, event) {
if (this.$parent.contextMenu) {
// event.stopPropagation();
// event.preventDefault();
}
},
getSpan (row, column, rowIndex, columnIndex) {
const fn = this.$parent.spanMethod;
if (typeof fn === 'function') {
@ -275,7 +281,8 @@
mouseleave: (e) => this.handleMouseOut(row._index, e, row._rowKey),
click: (e) => this.clickCurrentRow(row._index, e, row._rowKey),
dblclick: (e) => this.dblclickCurrentRow(row._index, e, row._rowKey),
contextmenu: (e) => this.contextmenuCurrentRow(row._index, e, row._rowKey)
contextmenu: (e) => this.contextmenuCurrentRow(row._index, e, row._rowKey),
selectstart: (e) => this.selectStartCurrentRow(row._index, e, row._rowKey)
}
}, $tds);
@ -344,7 +351,8 @@
mouseleave: (e) => this.handleMouseOut(row._index, e),
click: (e) => this.clickCurrentRow(row._index, e),
dblclick: (e) => this.dblclickCurrentRow(row._index, e),
contextmenu: (e) => this.contextmenuCurrentRow(row._index, e)
contextmenu: (e) => this.contextmenuCurrentRow(row._index, e),
selectstart: (e) => this.selectStartCurrentRow(row._index, e)
}
}, $tds);
$tableTrs.push($tableTr);