Merge ee4134914916afeca33a0fe6da7fff76d74d7e63 into 18524d89fb8086a34307ed17e54da520db92add2

This commit is contained in:
undefined 2025-04-02 18:26:17 +08:00 committed by GitHub
commit e7aa8ef03d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

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

View File

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