🔨 数据分组添加 userId.

This commit is contained in:
lijiahang
2024-04-23 16:26:55 +08:00
parent b6ee28731b
commit c14c0248cb
21 changed files with 477 additions and 102 deletions

View File

@@ -136,6 +136,7 @@
return;
}
node.editable = true;
node.originTitle = node.title;
nextTick(() => {
renameInput.value?.focus();
});
@@ -267,10 +268,17 @@
}
}
}
} else {
// 修改为空则设置为之前的值
node.title = node.originTitle;
}
node.editable = false;
}
node.modCount = 0;
// 重置 modCount
setTimeout(() => {
node.modCount = 0;
node.originTitle = undefined;
}, 50);
};
// 移动分组