mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
Merge ee4134914916afeca33a0fe6da7fff76d74d7e63 into 18524d89fb8086a34307ed17e54da520db92add2
This commit is contained in:
commit
e7aa8ef03d
@ -136,7 +136,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);
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user