Commit a155993d authored by 左玲玲's avatar 左玲玲 😬

1559

parent 7d9e91dc
......@@ -10,21 +10,23 @@ function getcolumns(setdrawer, valtype, itemId) {
colProps: { span: 8 },
render: (_, row) => {
return (
<a
className="table-cell"
onClick={() => {
setdrawer && setdrawer((s) => ({
...s,
open: true,
item: row,
val: 'only',
title: '合同详情',
type: 'detail'
}));
}}
>
{row.contractNo}
</a>
<Tooltip title={row.contractNo}>
<a
className="table-cell"
onClick={() => {
setdrawer && setdrawer((s) => ({
...s,
open: true,
item: row,
val: 'only',
title: '合同详情',
type: 'detail'
}));
}}
>
{row.contractNo}
</a>
</Tooltip>
);
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment