From 9ed4e94d3b07d26792bc8a28c8451388abd44f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Wed, 11 Jun 2025 14:28:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96=E3=80=81?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forge/Server/quality/component/CallTable.jsx | 5 +++++ src/forge/Server/quality/index.jsx | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/forge/Server/quality/component/CallTable.jsx b/src/forge/Server/quality/component/CallTable.jsx index 183ab12bb..77e3fd8de 100644 --- a/src/forge/Server/quality/component/CallTable.jsx +++ b/src/forge/Server/quality/component/CallTable.jsx @@ -31,6 +31,8 @@ function CallTable(props){ { title: "方法名", dataIndex: "function", + ellipsis:true, + width: '150px' }, { title: "方法位置", @@ -40,14 +42,17 @@ function CallTable(props){ {text} : text ), + width: '400px' }, { title: "调用方法数", dataIndex: "call_count", + width: '120px' }, { title: "被调用次数", dataIndex: "called_count", + width: '120px' }, ]; diff --git a/src/forge/Server/quality/index.jsx b/src/forge/Server/quality/index.jsx index ff20e4630..50c3d9a68 100644 --- a/src/forge/Server/quality/index.jsx +++ b/src/forge/Server/quality/index.jsx @@ -321,7 +321,7 @@ function IssueList(props) { const toDetail = (e) => { history.push({ - pathname: `/${owner}/${projectsId}/service/quality/detail`, + pathname: `/${owner}/${projectsId}/quality/detail`, state: { baseInfo, selectedIssue: e