成果申诉表结构修改

This commit is contained in:
unknown 2022-03-03 11:39:08 +08:00
parent b5fbde51af
commit eef78ab880
1 changed files with 5 additions and 5 deletions

View File

@ -95,16 +95,16 @@ export default Form.create()(({ form, showNotification, history}) => {
const columns = useMemo(() => { const columns = useMemo(() => {
return [ return [
{ {
title: '号', title: '成果编号',
dataIndex: 'index', dataIndex: 'paperNumber',
render: (text, record, index) => { render: (text, record) => {
return index + 1 return text ? <Link className="line_1 color-grey3" to={`/task/taskDetail/${record.taskId}`}>{text}</Link> : '--'
} }
}, },
{ {
title: '申诉内容', title: '申诉内容',
dataIndex: 'content', dataIndex: 'content',
width: "30%", width: "26%",
}, },
{ {
title: '申诉文件', title: '申诉文件',