From 0c0e06bfe83c8a77b8530fa64862b0f96ee2414a Mon Sep 17 00:00:00 2001 From: zsqtony <450952271@qq.com> Date: Tue, 1 Jul 2025 09:35:27 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/company/companies/index.tsx | 17 +++-------------- src/pages/company/employees/index.tsx | 3 ++- 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/src/pages/company/companies/index.tsx b/src/pages/company/companies/index.tsx index f803f53..4fc4b5c 100644 --- a/src/pages/company/companies/index.tsx +++ b/src/pages/company/companies/index.tsx @@ -17,7 +17,6 @@ export default function Index({ title = '机构管理' }) { MyProTableProps.request(params, sort, Apis.Company.Companies.List) } @@ -32,30 +31,20 @@ export default function Index({ title = '机构管理' }) { valueEnum: CompaniesMerchantTypeEnum, }), { - title: '组织名称', + title: '机构名称', dataIndex: 'name', }, { title: '组织简称', dataIndex: 'short_name', + search: false, }, { title: '营业执照号', dataIndex: 'business_license_number', + search: false, }, - // { - // title: '联系人', - // dataIndex: 'contact_name', - // }, - // { - // title: '手机号', - // dataIndex: 'contact_phone', - // }, - // { - // title: '联系人邮箱', - // dataIndex: 'contact_email', - // }, MyColumns.UpdatedAt(), // MyColumns.CreatedAt(), MyColumns.Option({ diff --git a/src/pages/company/employees/index.tsx b/src/pages/company/employees/index.tsx index 8a48043..0c44721 100644 --- a/src/pages/company/employees/index.tsx +++ b/src/pages/company/employees/index.tsx @@ -15,7 +15,6 @@ export default function Index({ title = '管理员' }) { MyProTableProps.request( params, @@ -39,10 +38,12 @@ export default function Index({ title = '管理员' }) { { title: '机构', dataIndex: ['company', 'name'], + search: false, }, { title: '组织', dataIndex: ['organization', 'name'], + search: false, }, MyColumns.UpdatedAt(), MyColumns.CreatedAt(),