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