From 0ba7e31e0997be1110e2899c1e73dd457a96f92c Mon Sep 17 00:00:00 2001 From: LiuHao Date: Thu, 20 Apr 2023 22:57:33 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E9=83=A8=E9=97=A8=E7=AE=A1=E7=90=86=20?= =?UTF-8?q?=E4=B8=8A=E7=BA=A7=E8=8F=9C=E5=8D=95=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/dept/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index 2f45839..fad48a3 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -229,7 +229,7 @@ const handleAdd = (row?: DeptVO) => { nextTick(() => { reset(); if (row && row.deptId) { - form.value.parentId = row?.parentId; + form.value.parentId = row?.deptId; } }) }