|
|
@@ -6,7 +6,6 @@ import consts from '@/consts'
|
|
|
import { servicelogEnum } from '@/pages/Customer/Company/components/CompanyDetail/LowerList'
|
|
|
import ClientDetail from '@/pages/Customer/Client/components/ClientDetail'
|
|
|
import CompanyDetail from '@/pages/Customer/Company/components/CompanyDetail'
|
|
|
-import { Badge } from 'antd'
|
|
|
import { cardTypeMap } from '../consts'
|
|
|
import { useModal } from '@/components/Modal'
|
|
|
|
|
|
@@ -226,8 +225,15 @@ const RatioPanels = ({ dataType, staffIds, retioCyclical, dataPermission }) => {
|
|
|
{
|
|
|
dataIndex: 'companyName',
|
|
|
title: '单位名称',
|
|
|
+ width: '16%',
|
|
|
ellipsis: true,
|
|
|
- width: '16%'
|
|
|
+ render: (companyName, record) => (
|
|
|
+ <span
|
|
|
+ className="text-primary cursor-pointer hover:text-[#967bbd]"
|
|
|
+ onClick={() => showDrawerComapny(record.companyId)}>
|
|
|
+ {companyName}
|
|
|
+ </span>
|
|
|
+ )
|
|
|
},
|
|
|
{
|
|
|
dataIndex: 'districtName',
|