From 56c27dcd2b6790305e758bd12e54f563ba4f284a Mon Sep 17 00:00:00 2001 From: Rex Date: Thu, 14 Aug 2025 00:39:35 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(infra):=20=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=8A=A5=E9=94=99=20=20=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E5=BC=82=E5=B8=B8=E4=BF=A1=E6=81=AF=E6=8A=A5?= =?UTF-8?q?=E9=94=99=EF=BC=8C=E6=98=AF=E5=9B=A0=E4=B8=BA=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E5=8C=96json=E5=AF=BC=E8=87=B4=E7=9A=84=EF=BC=8C=E7=BB=99?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E7=9A=84=E5=9C=B0=E6=96=B9=E5=8E=BB?= =?UTF-8?q?=E6=8E=89=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rex --- apps/web-antd/src/views/infra/apiErrorLog/data.ts | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/apps/web-antd/src/views/infra/apiErrorLog/data.ts b/apps/web-antd/src/views/infra/apiErrorLog/data.ts index ab78b277f..005d91c2c 100644 --- a/apps/web-antd/src/views/infra/apiErrorLog/data.ts +++ b/apps/web-antd/src/views/infra/apiErrorLog/data.ts @@ -135,6 +135,7 @@ export function useDetailSchema(): DescriptionItemSchema[] { { field: 'id', label: '日志编号', + labelStyle: { width: '120px' }, }, { field: 'traceId', @@ -176,12 +177,6 @@ export function useDetailSchema(): DescriptionItemSchema[] { { field: 'requestParams', label: '请求参数', - content: (data) => { - return h(JsonViewer, { - value: data.requestParams, - previewMode: true, - }); - }, }, { field: 'exceptionTime', @@ -197,12 +192,6 @@ export function useDetailSchema(): DescriptionItemSchema[] { { field: 'exceptionStackTrace', label: '异常堆栈', - content: (data) => { - return h(JsonViewer, { - value: data.exceptionStackTrace, - previewMode: true, - }); - }, }, { field: 'processStatus',