From 53e9b23a40186efd149fd5c5350b5eced1f69920 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 25 八月 2026 17:54:26 +0800
Subject: [PATCH] feat(auth): 更新认证页面为农业数字化平台主题
---
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