|
@@ -12,7 +12,7 @@ import { useModal } from '@/components/Modal'
|
|
|
import { formatValues } from '@/components/LazyCascader'
|
|
import { formatValues } from '@/components/LazyCascader'
|
|
|
import PersonLabel from './components/PersonLabel'
|
|
import PersonLabel from './components/PersonLabel'
|
|
|
import { TagTypeEnum, TagDataTypeEnum, LabelModeType } from './components/PersonLabel/const'
|
|
import { TagTypeEnum, TagDataTypeEnum, LabelModeType } from './components/PersonLabel/const'
|
|
|
-import { IconPark } from '@/components/SvgIcon'
|
|
|
|
|
|
|
+import { Add, Down, Check } from '@icon-park/react'
|
|
|
import { apiBatchLink } from '@/services/customer'
|
|
import { apiBatchLink } from '@/services/customer'
|
|
|
|
|
|
|
|
const Company = props => {
|
|
const Company = props => {
|
|
@@ -200,7 +200,7 @@ const Company = props => {
|
|
|
tagColumn={TagDataTypeEnum.COMPANY}
|
|
tagColumn={TagDataTypeEnum.COMPANY}
|
|
|
checkCallBack={refreshData}
|
|
checkCallBack={refreshData}
|
|
|
modeType={LabelModeType.column}>
|
|
modeType={LabelModeType.column}>
|
|
|
- <IconPark type="add" theme="filled" size="20" fill="#868e96" className="zh-pointer" />
|
|
|
|
|
|
|
+ <Add size="20" fill="#868e96" className="zh-pointer" />
|
|
|
</PersonLabel>
|
|
</PersonLabel>
|
|
|
</div>
|
|
</div>
|
|
|
)
|
|
)
|
|
@@ -236,7 +236,7 @@ const Company = props => {
|
|
|
tagColumn={TagDataTypeEnum.COMPANY}
|
|
tagColumn={TagDataTypeEnum.COMPANY}
|
|
|
checkCallBack={refreshData}
|
|
checkCallBack={refreshData}
|
|
|
modeType={LabelModeType.column}>
|
|
modeType={LabelModeType.column}>
|
|
|
- <IconPark type="add" theme="filled" size="20" fill="#868e96" className="zh-pointer" />
|
|
|
|
|
|
|
+ <Add theme="filled" size="20" fill="#868e96" className="zh-pointer" />
|
|
|
</PersonLabel>
|
|
</PersonLabel>
|
|
|
</div>
|
|
</div>
|
|
|
)
|
|
)
|
|
@@ -381,12 +381,12 @@ const Company = props => {
|
|
|
style={{ backgroundColor: personTagColorMap[item] }}
|
|
style={{ backgroundColor: personTagColorMap[item] }}
|
|
|
/>
|
|
/>
|
|
|
))}
|
|
))}
|
|
|
- <IconPark type="down" />
|
|
|
|
|
|
|
+ <Down />
|
|
|
</Button>
|
|
</Button>
|
|
|
) : (
|
|
) : (
|
|
|
<Button>
|
|
<Button>
|
|
|
个人标签
|
|
个人标签
|
|
|
- <IconPark type="down" />
|
|
|
|
|
|
|
+ <Down />
|
|
|
</Button>
|
|
</Button>
|
|
|
)}
|
|
)}
|
|
|
</PersonLabel>
|
|
</PersonLabel>
|
|
@@ -406,18 +406,18 @@ const Company = props => {
|
|
|
style={{ backgroundColor: teamTagColorMap[item] }}
|
|
style={{ backgroundColor: teamTagColorMap[item] }}
|
|
|
/>
|
|
/>
|
|
|
))}
|
|
))}
|
|
|
- <IconPark type="down" />
|
|
|
|
|
|
|
+ <Down />
|
|
|
</Button>
|
|
</Button>
|
|
|
) : (
|
|
) : (
|
|
|
<Button>
|
|
<Button>
|
|
|
协作标签
|
|
协作标签
|
|
|
- <IconPark type="down" />
|
|
|
|
|
|
|
+ <Down />
|
|
|
</Button>
|
|
</Button>
|
|
|
)}
|
|
)}
|
|
|
</PersonLabel>
|
|
</PersonLabel>
|
|
|
</div>
|
|
</div>
|
|
|
<Button onClick={() => tagsSettingConfirm(selectedRowKeys)}>
|
|
<Button onClick={() => tagsSettingConfirm(selectedRowKeys)}>
|
|
|
- <IconPark type="check" size={14} />
|
|
|
|
|
|
|
+ <Check size={14} />
|
|
|
确认
|
|
确认
|
|
|
</Button>
|
|
</Button>
|
|
|
</div>
|
|
</div>
|