From 8c99ae416c5277e737e950ce7702776d7c9b6430 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 03 八月 2026 17:57:08 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev_pro2.0' into dev_pro2.0

---
 src/views/system/notify/message/data.ts |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/src/views/system/notify/message/data.ts b/src/views/system/notify/message/data.ts
index c6a3152..f09553f 100644
--- a/src/views/system/notify/message/data.ts
+++ b/src/views/system/notify/message/data.ts
@@ -197,9 +197,20 @@
       label: '妯$増鍙傛暟',
       render: (val) => {
         try {
-          return JSON.stringify(val);
+          const params = typeof val === 'string' ? JSON.parse(val) : val;
+          if (!params || typeof params !== 'object') return '-';
+          return h(
+            'div',
+            { class: 'space-y-1' },
+            Object.entries(params).map(([key, value]) =>
+              h('div', { class: 'flex gap-2' }, [
+                h('span', { class: 'font-medium text-gray-600' }, `${key}:`),
+                h('span', { class: 'text-gray-900' }, String(value)),
+              ]),
+            ),
+          );
         } catch {
-          return '';
+          return String(val);
         }
       },
     },

--
Gitblit v1.9.3