This commit is contained in:
qsh
2025-04-15 12:45:33 +08:00
parent f93e1f7187
commit f2f14789f0
10 changed files with 205 additions and 163 deletions

View File

@@ -189,9 +189,9 @@ function handleAddNode() {
dialogOkrInfo.value.open('create', null)
}
function handleEditOkr() {
function handleEditOkr(nodeId = undefined) {
dialogOkr.value.close()
dialogOkrInfo.value.open('update', 1)
dialogOkrInfo.value.open('update', nodeId || searchForm.value.nodeId, 2)
}
</script>