perf(table): checkbox performance (#4673)

Co-authored-by: linzhangyu <gebi.lzy@raycloud.com>
pull/4699/head
twobrushes 2021-09-22 08:31:49 +08:00 committed by GitHub
parent 7779c0469c
commit 911ea488bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -152,7 +152,6 @@ export default {
//
sFilters: this.getDefaultFilters(props.columns),
sPagination: this.getDefaultPagination(this.$props),
pivot: undefined,
sComponents: createComponents(this.components),
filterDataCnt: 0,
};
@ -583,7 +582,7 @@ export default {
const defaultSelection = this.store.selectionDirty ? [] : this.getDefaultSelection();
let selectedRowKeys = this.store.selectedRowKeys.concat(defaultSelection);
const key = this.getRecordKey(record, rowIndex);
const { pivot } = this.$data;
const { pivot } = this;
const rows = this.getFlatCurrentPageData();
let realIndex = rowIndex;
if (this.$props.expandedRowRender) {
@ -613,7 +612,7 @@ export default {
}
}
this.setState({ pivot: realIndex });
this.pivot = realIndex;
this.store.selectionDirty = true;
this.setSelectedRowKeys(selectedRowKeys, {
selectWay: 'onSelectMultiple',
@ -628,7 +627,7 @@ export default {
} else {
selectedRowKeys = selectedRowKeys.filter(i => key !== i);
}
this.setState({ pivot: realIndex });
this.pivot = realIndex;
this.store.selectionDirty = true;
this.setSelectedRowKeys(selectedRowKeys, {
selectWay: 'onSelect',