|
|
@ -62,11 +62,18 @@ const Rest = (props) => { |
|
|
|
title: '序号', |
|
|
|
dataIndex: 'index', |
|
|
|
render: (text, record, index) => index + 1 |
|
|
|
}, { |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '事项名称', |
|
|
|
dataIndex: 'fsFormItemName', |
|
|
|
render: (text, record, index) => { |
|
|
|
return record?.name || '' |
|
|
|
} |
|
|
|
},{ |
|
|
|
title: '项目名称', |
|
|
|
dataIndex: 'pomsProject', |
|
|
|
render: (text, record, index) => { |
|
|
|
return record.fsFormItemName==='运维中台售后问题处理工单'? |
|
|
|
return record.name==='运维中台售后问题处理工单'? |
|
|
|
pomsProjectBasicAll?.find(item=>item.value==record?.pomsNeedData?.pomsProjectId?.value).label||'':record?.pomsNeedData?.projectName?.value || '' |
|
|
|
|
|
|
|
} |
|
|
@ -74,15 +81,9 @@ const Rest = (props) => { |
|
|
|
title: '申请内容描述', |
|
|
|
dataIndex: 'applyContent', |
|
|
|
render: (text, record, index) => { |
|
|
|
return record.fsFormItemName==='运维中台售后问题处理工单'?record?.pomsNeedData?.detail?.value.length>5? |
|
|
|
return record.name==='运维中台售后问题处理工单'?record?.pomsNeedData?.detail?.value.length>5? |
|
|
|
<Tooltip content={record?.pomsNeedData?.detail?.value}>{record?.pomsNeedData?.detail?.value.substring(0, 5) + '...'}</Tooltip>:record?.pomsNeedData?.detail?.value || '':record?.pomsNeedData?.applyContent?.value || '' |
|
|
|
} |
|
|
|
}, { |
|
|
|
title: '申请内容描述', |
|
|
|
dataIndex: 'applyContent', |
|
|
|
render: (text, record, index) => { |
|
|
|
return record?.pomsNeedData?.applyContent?.value || '' |
|
|
|
} |
|
|
|
}, |
|
|
|
// { |
|
|
|
// title: '关联项目', |
|
|
@ -129,13 +130,7 @@ const Rest = (props) => { |
|
|
|
// return record?.pomsNeedData?.handlingResult?.value || '' |
|
|
|
// } |
|
|
|
// }, |
|
|
|
{ |
|
|
|
title: '事项名称', |
|
|
|
dataIndex: 'fsFormItemName', |
|
|
|
render: (text, record, index) => { |
|
|
|
return record?.name || '' |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
title: '问题类型', |
|
|
|
dataIndex: 'issueType', |
|
|
|