|
|
@@ -54,7 +54,7 @@ const CompanyTabList = ({ initData, customerId, client, software, customer }) =>
|
|
|
title: '所有部门',
|
|
|
dataIndex: 'department',
|
|
|
onFilter: true,
|
|
|
- width: '25%',
|
|
|
+ width: '23%',
|
|
|
filters: Array.from(
|
|
|
new Set(client.client?.map(item => item.department)).map(item => ({
|
|
|
text: item,
|
|
|
@@ -65,7 +65,7 @@ const CompanyTabList = ({ initData, customerId, client, software, customer }) =>
|
|
|
{
|
|
|
title: '姓名',
|
|
|
dataIndex: 'clientName',
|
|
|
- width: '30%',
|
|
|
+ width: '23%',
|
|
|
render: (clientName, record) => (
|
|
|
<div className="text-primary hover:text-[#967bbd] line-clamp-1">
|
|
|
<span onClick={() => showDrawer(record.id)} className="cursor-pointer ">
|
|
|
@@ -89,7 +89,7 @@ const CompanyTabList = ({ initData, customerId, client, software, customer }) =>
|
|
|
{
|
|
|
title: 'QQ',
|
|
|
dataIndex: 'qq',
|
|
|
- width: '10%',
|
|
|
+ width: '20%',
|
|
|
ellipsis: true
|
|
|
}
|
|
|
]
|
|
|
@@ -97,6 +97,7 @@ const CompanyTabList = ({ initData, customerId, client, software, customer }) =>
|
|
|
{
|
|
|
title: '锁号',
|
|
|
dataIndex: 'keyNum',
|
|
|
+ width: '20%',
|
|
|
render: (clientName, record) => (
|
|
|
<span
|
|
|
onClick={() => showLongleDrawer(record.id)}
|
|
|
@@ -107,14 +108,17 @@ const CompanyTabList = ({ initData, customerId, client, software, customer }) =>
|
|
|
},
|
|
|
{
|
|
|
title: '产品',
|
|
|
+ width: '50%',
|
|
|
dataIndex: 'product'
|
|
|
},
|
|
|
{
|
|
|
title: '状态',
|
|
|
+ width: '10%',
|
|
|
dataIndex: 'statusT'
|
|
|
},
|
|
|
{
|
|
|
title: '责任人',
|
|
|
+ width: '15%',
|
|
|
dataIndex: 'responsible'
|
|
|
}
|
|
|
]
|