From 3dab25b1741c07648f97e65b9c50d4cfc5fbbe5b Mon Sep 17 00:00:00 2001 From: lz-ui Date: Mon, 13 Oct 2025 16:55:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=B7=BB=E5=8A=A0=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/operation/configModels/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/operation/configModels/index.vue b/src/views/operation/configModels/index.vue index 29e9f45..1c14b87 100644 --- a/src/views/operation/configModels/index.vue +++ b/src/views/operation/configModels/index.vue @@ -195,7 +195,7 @@ function openDialog(type = 'add', row = {}) { dialogTitle.value = '新增' } else if (type === 'edit') { dialogTitle.value = '编辑' - dialogForm.value = row + dialogForm.value = JSON.parse(JSON.stringify(row)) } dialogOpen.value = true }