4.1 同步发版内容到天梯
This commit is contained in:
@ -53,9 +53,13 @@ const Index: React.FC<{}> = () => {
|
||||
},
|
||||
{
|
||||
title: '组织结构',
|
||||
dataIndex: 'deptName',
|
||||
key: 'deptName',
|
||||
with: 200,
|
||||
render: (row: any, index: any) => {
|
||||
return(
|
||||
<>{row?.user?.organizationName}</>
|
||||
)
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '提交时间',
|
||||
@ -105,15 +109,19 @@ const Index: React.FC<{}> = () => {
|
||||
},
|
||||
{
|
||||
title: '账号',
|
||||
dataIndex: 'userId',
|
||||
key: 'userId',
|
||||
search: false
|
||||
search: false,
|
||||
render: (row: any, index: any) => {
|
||||
return <span>{row?.user?.userId}</span>
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '组织结构',
|
||||
dataIndex: 'deptName',
|
||||
key: 'deptName',
|
||||
search: false
|
||||
search: false,
|
||||
render: (row: any, index: any) => {
|
||||
return <span>{row?.user?.organizationName}</span>
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
|
Reference in New Issue
Block a user