成果申诉表结构修改
This commit is contained in:
parent
b5fbde51af
commit
eef78ab880
|
@ -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: '申诉文件',
|
||||||
|
|
Loading…
Reference in New Issue