|
@@ -74,10 +74,12 @@ function TaskDetail(props: IPropsType) {
|
|
|
title: '详情',
|
|
|
dataIndex: 'detail',
|
|
|
key: 'key',
|
|
|
- render: (value, record) => {
|
|
|
+ render: (value, _record, index) => {
|
|
|
return (
|
|
|
<div style={{ display: 'flex', alignItems: 'center' }}>
|
|
|
- <div style={{ width: '100%' }}>{value.text}</div>
|
|
|
+ <div style={{ width: '100%' }}>
|
|
|
+ {index + 1}、{value.text}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
);
|
|
|
},
|