From b915522ca6fdb2adbebc7170fb4bbfc9efedcfe4 Mon Sep 17 00:00:00 2001 From: opensnail <598092184@qq.com> Date: Tue, 30 Apr 2024 17:18:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(sj=5F1.0.0):=20=E5=AE=8C=E6=88=90=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E4=BA=BA=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../recipient/modules/notify-recipient-detail-drawer.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue b/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue index 19f27f7..45ac9c8 100644 --- a/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue +++ b/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue @@ -26,7 +26,8 @@ watch( () => props.rowData, () => { console.log(props.rowData); - // notifyAttribute.value = JSON.parse(props?.rowData?.notifyAttribute!) || {}; + const rowData = props.rowData?.notifyAttribute; + notifyAttribute.value = JSON.parse(rowData!) || {}; }, { immediate: true } );