|
|
@@ -172,8 +172,7 @@ const Client = props => {
|
|
|
render: (clientName, record) => (
|
|
|
<span
|
|
|
onClick={() => showDrawer(record.id)}
|
|
|
- className="text-primary cursor-pointer hover:text-[#967bbd]"
|
|
|
- >
|
|
|
+ className="text-primary cursor-pointer hover:text-[#967bbd]">
|
|
|
{clientName}
|
|
|
</span>
|
|
|
),
|
|
|
@@ -184,14 +183,13 @@ const Client = props => {
|
|
|
title: '单位名称',
|
|
|
dataIndex: 'companyName',
|
|
|
key: 'companyName',
|
|
|
- width: 100,
|
|
|
+ width: 200,
|
|
|
// ellipsis: true,
|
|
|
render: (companyName, record) =>
|
|
|
record.companyId !== consts.ENCRYPTION_ZERO ? (
|
|
|
<span
|
|
|
onClick={() => showDrawerComapny(record.companyId)}
|
|
|
- className="text-primary cursor-pointer hover:text-[#967bbd]"
|
|
|
- >
|
|
|
+ className="text-primary cursor-pointer hover:text-[#967bbd]">
|
|
|
{companyName}
|
|
|
</span>
|
|
|
) : (
|
|
|
@@ -205,7 +203,7 @@ const Client = props => {
|
|
|
dataIndex: 'department',
|
|
|
key: 'department',
|
|
|
ellipsis: true,
|
|
|
- width: 75,
|
|
|
+ width: 50,
|
|
|
search: false
|
|
|
},
|
|
|
{
|
|
|
@@ -252,7 +250,7 @@ const Client = props => {
|
|
|
title: '办公室',
|
|
|
dataIndex: 'office',
|
|
|
key: 'office',
|
|
|
- width: 75,
|
|
|
+ width: 50,
|
|
|
ellipsis: true,
|
|
|
search: false
|
|
|
},
|
|
|
@@ -297,8 +295,7 @@ const Client = props => {
|
|
|
tagType={TagTypeEnum.PERSONTAG}
|
|
|
tagColumn={TagDataTypeEnum.CLIENT}
|
|
|
checkCallBack={refreshData}
|
|
|
- modeType={LabelModeType.column}
|
|
|
- >
|
|
|
+ modeType={LabelModeType.column}>
|
|
|
<Add theme="filled" size="20" fill="#868e96" className="cursor-pointer" />
|
|
|
</PersonLabel>
|
|
|
</div>
|
|
|
@@ -335,8 +332,7 @@ const Client = props => {
|
|
|
tagType={TagTypeEnum.TEAMTAG}
|
|
|
tagColumn={TagDataTypeEnum.CLIENT}
|
|
|
checkCallBack={refreshData}
|
|
|
- modeType={LabelModeType.column}
|
|
|
- >
|
|
|
+ modeType={LabelModeType.column}>
|
|
|
<Add theme="filled" size="20" fill="#868e96" className="cursor-pointer" />
|
|
|
</PersonLabel>
|
|
|
</div>
|
|
|
@@ -497,8 +493,7 @@ const Client = props => {
|
|
|
tagType={TagTypeEnum.PERSONTAG}
|
|
|
tagColumn={TagDataTypeEnum.CLIENT}
|
|
|
checkCallBack={toolbarOptionsChange}
|
|
|
- modeType={LabelModeType.toolbar}
|
|
|
- >
|
|
|
+ modeType={LabelModeType.toolbar}>
|
|
|
{tagState.tagIds.length ? (
|
|
|
<Button>
|
|
|
{tagState.tagIds.map(item => (
|
|
|
@@ -523,8 +518,7 @@ const Client = props => {
|
|
|
tagType={TagTypeEnum.TEAMTAG}
|
|
|
tagColumn={TagDataTypeEnum.CLIENT}
|
|
|
checkCallBack={toolbarOptionsChange}
|
|
|
- modeType={LabelModeType.toolbar}
|
|
|
- >
|
|
|
+ modeType={LabelModeType.toolbar}>
|
|
|
{tagState.tagCooperationIds.length ? (
|
|
|
<Button>
|
|
|
{tagState.tagCooperationIds.map(item => (
|