4.1 同步发版内容到天梯

This commit is contained in:
jl-zhoujl2
2022-04-01 20:06:34 +08:00
parent a3b939d154
commit 7b3efe00dd
128 changed files with 929 additions and 5029 deletions

View File

@ -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: '状态',