|
@@ -48,7 +48,7 @@ const Contact = props => {
|
|
|
text: (
|
|
text: (
|
|
|
<>
|
|
<>
|
|
|
<span
|
|
<span
|
|
|
- className="zh-circle-icon zh-mg-right-3"
|
|
|
|
|
|
|
+ className="zh-square-icon zh-mg-right-3"
|
|
|
style={{ backgroundColor: teamTagColorMap[item.id] }}
|
|
style={{ backgroundColor: teamTagColorMap[item.id] }}
|
|
|
/>
|
|
/>
|
|
|
<span>{item.name}</span>
|
|
<span>{item.name}</span>
|
|
@@ -119,7 +119,11 @@ const Contact = props => {
|
|
|
key: 'clientName',
|
|
key: 'clientName',
|
|
|
width: 50,
|
|
width: 50,
|
|
|
fixed: 'left',
|
|
fixed: 'left',
|
|
|
- render: (clientName, record) => <a onClick={() => showDrawer(record.id)}>{clientName}</a>
|
|
|
|
|
|
|
+ render: (clientName, record) => (
|
|
|
|
|
+ <span onClick={() => showDrawer(record.id)} className="text-primary">
|
|
|
|
|
+ {clientName}
|
|
|
|
|
+ </span>
|
|
|
|
|
+ )
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
title: '客户名称',
|
|
title: '客户名称',
|