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