From b032a65aa8de5c20b224367f727d34c5b2b2fe3f Mon Sep 17 00:00:00 2001 From: "853931625@qq.com" Date: Tue, 2 Jun 2026 16:41:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=83=A8=E9=97=A8=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E8=BF=87=E9=95=BF=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Container/Enterprise/OrganizationStructure/index.js | 2 +- src/pages/Container/Stakeholder/Department/index.js | 2 +- .../Supervision/BranchCompany/AccountManage/List/index.js | 4 +++- .../Container/Supervision/Supervision/Department/index.js | 3 ++- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/pages/Container/Enterprise/OrganizationStructure/index.js b/src/pages/Container/Enterprise/OrganizationStructure/index.js index 101c725..99562c2 100644 --- a/src/pages/Container/Enterprise/OrganizationStructure/index.js +++ b/src/pages/Container/Enterprise/OrganizationStructure/index.js @@ -159,7 +159,7 @@ function OrganizationStructure(props) { type="link" onClick={() => handleTableNodeClick(record)} > - {`${record.name}>`} + {`${record.name.length > 25 ? `${record.name.slice(0, 25)}...` : record.name}>`} ), }, diff --git a/src/pages/Container/Stakeholder/Department/index.js b/src/pages/Container/Stakeholder/Department/index.js index 5322630..5754c43 100644 --- a/src/pages/Container/Stakeholder/Department/index.js +++ b/src/pages/Container/Stakeholder/Department/index.js @@ -181,7 +181,7 @@ function Department(props) { type="link" onClick={() => handleTableNodeClick(record)} > - {`${record.name}>`} + {`${record.name.length > 25 ? `${record.name.slice(0, 25)}...` : record.name}>`} ), }, diff --git a/src/pages/Container/Supervision/BranchCompany/AccountManage/List/index.js b/src/pages/Container/Supervision/BranchCompany/AccountManage/List/index.js index 6a91d0a..b459157 100644 --- a/src/pages/Container/Supervision/BranchCompany/AccountManage/List/index.js +++ b/src/pages/Container/Supervision/BranchCompany/AccountManage/List/index.js @@ -215,10 +215,12 @@ function List(props) { { title: "分公司状态", dataIndex: "corpStateName", + width: 180, }, { title: "状态", dataIndex: "useFlag", + width: 180, render: (_, record) => (
{record.useFlag === 0 @@ -231,7 +233,7 @@ function List(props) { }, { title: "操作", - width: 500, + width: 400, render: (_, record) => ( diff --git a/src/pages/Container/Supervision/Supervision/Department/index.js b/src/pages/Container/Supervision/Supervision/Department/index.js index b4a670a..d36a25b 100644 --- a/src/pages/Container/Supervision/Supervision/Department/index.js +++ b/src/pages/Container/Supervision/Supervision/Department/index.js @@ -192,9 +192,10 @@ function Department(props) { ), },