From 29b4f3544d1cce531c83e1164b5be47f26a569bb Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期五, 14 八月 2026 10:17:11 +0800
Subject: [PATCH] 采购来票详情编辑后报错
---
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