fix: 修复添加行时的操作顺序问题

This commit is contained in:
AN
2025-05-27 23:13:35 +08:00
parent 14a29070c9
commit f004e75cc1

View File

@ -155,8 +155,8 @@ async function edit(row: TableDataWithIndex<Api.System.Dept>) {
}
async function addInRow(row: TableDataWithIndex<Api.System.Dept>) {
handleAdd();
editingData.value = jsonClone(row);
handleAdd();
}
</script>