|
@@ -196,7 +196,8 @@ const LockStore = ({ prodList = [], dispatch, shouldUpdate }) => {
|
|
|
render: (keyNum, record) => (
|
|
render: (keyNum, record) => (
|
|
|
<span
|
|
<span
|
|
|
onClick={() => showDrawer(record.id)}
|
|
onClick={() => showDrawer(record.id)}
|
|
|
- className="text-primary cursor-pointer hover:text-[#967bbd]">
|
|
|
|
|
|
|
+ className="text-primary cursor-pointer hover:text-[#967bbd]"
|
|
|
|
|
+ >
|
|
|
{keyNum}
|
|
{keyNum}
|
|
|
</span>
|
|
</span>
|
|
|
)
|
|
)
|
|
@@ -283,11 +284,13 @@ const LockStore = ({ prodList = [], dispatch, shouldUpdate }) => {
|
|
|
title: '客户',
|
|
title: '客户',
|
|
|
dataIndex: 'client',
|
|
dataIndex: 'client',
|
|
|
key: 'client',
|
|
key: 'client',
|
|
|
|
|
+ sorter: true,
|
|
|
width: 150,
|
|
width: 150,
|
|
|
render: (text, record) => (
|
|
render: (text, record) => (
|
|
|
<span
|
|
<span
|
|
|
onClick={() => showDrawerClient(record.clientId)}
|
|
onClick={() => showDrawerClient(record.clientId)}
|
|
|
- className="text-primary cursor-pointer hover:text-[#967bbd]">
|
|
|
|
|
|
|
+ className="text-primary cursor-pointer hover:text-[#967bbd]"
|
|
|
|
|
+ >
|
|
|
{text}
|
|
{text}
|
|
|
</span>
|
|
</span>
|
|
|
)
|
|
)
|
|
@@ -296,11 +299,13 @@ const LockStore = ({ prodList = [], dispatch, shouldUpdate }) => {
|
|
|
title: '单位名称',
|
|
title: '单位名称',
|
|
|
dataIndex: 'customerName',
|
|
dataIndex: 'customerName',
|
|
|
key: 'customerName',
|
|
key: 'customerName',
|
|
|
|
|
+ sorter: true,
|
|
|
width: 300,
|
|
width: 300,
|
|
|
render: (text, record) => (
|
|
render: (text, record) => (
|
|
|
<span
|
|
<span
|
|
|
onClick={() => showCompanyDrawer(record.customerId)}
|
|
onClick={() => showCompanyDrawer(record.customerId)}
|
|
|
- className="text-primary cursor-pointer hover:text-[#967bbd]">
|
|
|
|
|
|
|
+ className="text-primary cursor-pointer hover:text-[#967bbd]"
|
|
|
|
|
+ >
|
|
|
{text}
|
|
{text}
|
|
|
</span>
|
|
</span>
|
|
|
)
|
|
)
|
|
@@ -312,7 +317,8 @@ const LockStore = ({ prodList = [], dispatch, shouldUpdate }) => {
|
|
|
render: (text, record) => (
|
|
render: (text, record) => (
|
|
|
<span
|
|
<span
|
|
|
onClick={() => showDrawerResponsible(record.responsibleId)}
|
|
onClick={() => showDrawerResponsible(record.responsibleId)}
|
|
|
- className="text-primary cursor-pointer hover:text-[#967bbd]">
|
|
|
|
|
|
|
+ className="text-primary cursor-pointer hover:text-[#967bbd]"
|
|
|
|
|
+ >
|
|
|
{text}
|
|
{text}
|
|
|
</span>
|
|
</span>
|
|
|
)
|
|
)
|