未验证 提交 a2b594c9 编写于 作者: L lzdjack 提交者: GitHub

fix: Fix the problem that the table setting menu cannot be dragged (#1503)

上级 0dafaa59
......@@ -117,14 +117,16 @@
import { useI18n } from '/@/hooks/web/useI18n';
import { useTableContext } from '../../hooks/useTableContext';
import { useDesign } from '/@/hooks/web/useDesign';
import { useSortable } from '/@/hooks/web/useSortable';
// import { useSortable } from '/@/hooks/web/useSortable';
import { isFunction, isNullAndUnDef } from '/@/utils/is';
import { getPopupContainer as getParentContainer } from '/@/utils';
import { cloneDeep, omit } from 'lodash-es';
import Sortablejs from 'sortablejs';
import type Sortable from 'sortablejs';
interface State {
checkAll: boolean;
isInit: boolean;
isInit?: boolean;
checkedList: string[];
defaultCheckList: string[];
}
......@@ -158,7 +160,7 @@
let inited = false;
const cachePlainOptions = ref<Options[]>([]);
const plainOptions = ref<Options[]>([]);
const plainOptions = ref<Options[] | any>([]);
const plainSortOptions = ref<Options[]>([]);
......@@ -267,9 +269,9 @@
});
setColumns(checkedList);
}
let sortable = null;
let sortableOrder = [];
let sortable: Sortable;
let sortableOrder: string[] = [];
// reset columns
function reset() {
state.checkedList = [...state.defaultCheckList];
......@@ -289,7 +291,7 @@
const el = columnListEl.$el as any;
if (!el) return;
// Drag and drop sort
sortable = Sortable.create(unref(el), {
sortable = Sortablejs.create(unref(el), {
animation: 500,
delay: 400,
delayOnTouchOnly: true,
......@@ -348,7 +350,7 @@
if (isFixed && !item.width) {
item.width = 100;
}
table.setCacheColumnsByField?.(item.dataIndex, { fixed: isFixed });
table.setCacheColumnsByField?.(item.dataIndex as string, { fixed: isFixed });
setColumns(columns);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册