修复拖拽调整页面顺序

This commit is contained in:
undefined 2025-01-14 18:10:01 +08:00
parent 215ef93173
commit ee41349149
2 changed files with 4 additions and 1 deletions

View File

@ -137,7 +137,7 @@ watch(
let beforeDragList: Id[] = [];
const options = {
...{
dataIdAttr: 'page-id', //
dataIdAttr: 'data-page-id', //
onStart: async (event: SortableEvent) => {
if (typeof props.pageBarSortOptions?.beforeStart === 'function') {
await props.pageBarSortOptions.beforeStart(event, sortable);

View File

@ -279,6 +279,9 @@ export const getDepNodeIds = (dataSourceDeps: DataSourceDeps = {}) =>
* @param parentId id
*/
export const replaceChildNode = (newNode: MNode, data?: MNode[], parentId?: Id) => {
if(newNode.id==="1"){
return;
}
const path = getNodePath(newNode.id, data);
const node = path.pop();
let parent = path.pop();