|
@@ -111,7 +111,7 @@
|
|
import { useDesign } from '@/hooks/web/useDesign';
|
|
import { useDesign } from '@/hooks/web/useDesign';
|
|
import { isFunction, isNil } from '@/utils/is';
|
|
import { isFunction, isNil } from '@/utils/is';
|
|
import { getPopupContainer as getParentContainer } from '@/utils';
|
|
import { getPopupContainer as getParentContainer } from '@/utils';
|
|
- import { cloneDeep } from 'lodash-es';
|
|
|
|
|
|
+ import { cloneDeep, omit } from 'lodash-es';
|
|
import Sortablejs from 'sortablejs';
|
|
import Sortablejs from 'sortablejs';
|
|
|
|
|
|
// 列表设置缓存
|
|
// 列表设置缓存
|
|
@@ -492,7 +492,7 @@
|
|
table.setProps({
|
|
table.setProps({
|
|
rowSelection: showRowSelection
|
|
rowSelection: showRowSelection
|
|
? {
|
|
? {
|
|
- ...defaultRowSelection,
|
|
|
|
|
|
+ ...omit(defaultRowSelection, ['selectedRowKeys']),
|
|
fixed: true,
|
|
fixed: true,
|
|
}
|
|
}
|
|
: undefined,
|
|
: undefined,
|