Update table-body.vue
This commit is contained in:
parent
83e7c64fec
commit
604cf463ac
1 changed files with 10 additions and 2 deletions
|
@ -119,6 +119,12 @@
|
||||||
if (this.$parent.contextMenu) event.preventDefault();
|
if (this.$parent.contextMenu) event.preventDefault();
|
||||||
this.$parent.contextmenuCurrentRow(_index, rowKey, event);
|
this.$parent.contextmenuCurrentRow(_index, rowKey, event);
|
||||||
},
|
},
|
||||||
|
selectStartCurrentRow (_index, event) {
|
||||||
|
if (this.$parent.contextMenu) {
|
||||||
|
// event.stopPropagation();
|
||||||
|
// event.preventDefault();
|
||||||
|
}
|
||||||
|
},
|
||||||
getSpan (row, column, rowIndex, columnIndex) {
|
getSpan (row, column, rowIndex, columnIndex) {
|
||||||
const fn = this.$parent.spanMethod;
|
const fn = this.$parent.spanMethod;
|
||||||
if (typeof fn === 'function') {
|
if (typeof fn === 'function') {
|
||||||
|
@ -275,7 +281,8 @@
|
||||||
mouseleave: (e) => this.handleMouseOut(row._index, e, row._rowKey),
|
mouseleave: (e) => this.handleMouseOut(row._index, e, row._rowKey),
|
||||||
click: (e) => this.clickCurrentRow(row._index, e, row._rowKey),
|
click: (e) => this.clickCurrentRow(row._index, e, row._rowKey),
|
||||||
dblclick: (e) => this.dblclickCurrentRow(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);
|
}, $tds);
|
||||||
|
|
||||||
|
@ -344,7 +351,8 @@
|
||||||
mouseleave: (e) => this.handleMouseOut(row._index, e),
|
mouseleave: (e) => this.handleMouseOut(row._index, e),
|
||||||
click: (e) => this.clickCurrentRow(row._index, e),
|
click: (e) => this.clickCurrentRow(row._index, e),
|
||||||
dblclick: (e) => this.dblclickCurrentRow(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);
|
}, $tds);
|
||||||
$tableTrs.push($tableTr);
|
$tableTrs.push($tableTr);
|
||||||
|
|
Loading…
Add table
Reference in a new issue