mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
修复拖拽调整页面顺序
This commit is contained in:
parent
215ef93173
commit
ee41349149
@ -137,7 +137,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);
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user