Commit b85e9ddc by zhaochengxiang

资产送审

parent 0988d5b1
......@@ -270,17 +270,6 @@ const List = React.forwardRef(function ({ items }, ref) {
)
},
{
title: '备注信息',
dataIndex: 'remarks',
render: (text, record) => (
<Tooltip title={text}>
<Typography.Text ellipsis={true}>
{text}
</Typography.Text>
</Tooltip>
)
},
{
title: '路径',
dataIndex: 'path',
width: 120,
......@@ -295,7 +284,7 @@ const List = React.forwardRef(function ({ items }, ref) {
},
{
title: '送审备注',
dataIndex: 'auditMsg',
dataIndex: 'remarks',
render: (_, __, index) => (
<Input.TextArea rows={1}
autoSize={{ minRows: 1, maxRows: 3 }}
......@@ -303,7 +292,7 @@ const List = React.forwardRef(function ({ items }, ref) {
onChange={(e) => {
setTableData(prev => {
return produce(prev, (draft) => {
draft[index].auditMsg = e.target.value
draft[index].remarks = e.target.value
})
})
}}
......
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