|
@@ -105,7 +105,10 @@ const List: React.FC<ListProps> = ({ schema, dispatch, pTypeList }) => {
|
|
dataIndex: 'createdID',
|
|
dataIndex: 'createdID',
|
|
key: 'createdID',
|
|
key: 'createdID',
|
|
title: '创建人',
|
|
title: '创建人',
|
|
- renderText: (_, record) => record?.created?.name
|
|
|
|
|
|
+ renderText: (_, record) =>
|
|
|
|
+ record?.created?.ID
|
|
|
|
+ ? `${record?.created?.name}(${record?.created?.institution?.name})`
|
|
|
|
+ : null
|
|
},
|
|
},
|
|
{
|
|
{
|
|
dataIndex: 'reportAccount',
|
|
dataIndex: 'reportAccount',
|