From cf3d2fff033b839d300d8500bf86618007d0a480 Mon Sep 17 00:00:00 2001 From: zhaojisen <1301338853@qq.com> Date: Tue, 23 Dec 2025 11:43:44 +0800 Subject: [PATCH] Fix the problem of overly long names --- src/components/Table/InfoCardTable/Panel.vue | 30 +++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/components/Table/InfoCardTable/Panel.vue b/src/components/Table/InfoCardTable/Panel.vue index f39213752..e165e679f 100644 --- a/src/components/Table/InfoCardTable/Panel.vue +++ b/src/components/Table/InfoCardTable/Panel.vue @@ -4,15 +4,11 @@
- {{ object.name }} +

{{ object.name }}

{{ object.provider.label }}
-
+
@@ -64,21 +60,19 @@ export default { }, getImage: { type: Function, - default: (obj) => '' + default: obj => '' }, getInfos: { type: Function, - default: (obj) => [] + default: obj => [] }, handleUpdate: { type: Function, - default: () => { - } + default: () => {} }, onView: { type: Function, - default: () => { - } + default: () => {} } }, data() { @@ -152,7 +146,6 @@ export default {