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) => (