Commit 5ce06287 by zhaochengxiang

优化意见

parent 7ba52688
...@@ -222,6 +222,10 @@ const ModelList = ({ visible, item, type, onCancel }) => { ...@@ -222,6 +222,10 @@ const ModelList = ({ visible, item, type, onCancel }) => {
) )
} }
}, },
{
title: '操作人',
dataIndex: 'operationUserName',
},
] ]
const getList = () => { const getList = () => {
...@@ -380,8 +384,12 @@ const PerfectMatch = ({ item }) => { ...@@ -380,8 +384,12 @@ const PerfectMatch = ({ item }) => {
render: (_, record) => record.modelModifiedTs?new Date(record.modelModifiedTs).toLocaleString():'' render: (_, record) => record.modelModifiedTs?new Date(record.modelModifiedTs).toLocaleString():''
}, },
{ {
title: '模型对比前状态',
dataIndex: 'originalModelStatusName',
},
{
title: '模型状态', title: '模型状态',
dataIndex: 'modelStatusName', dataIndex: 'processedModelStatusName',
}, },
{ {
title: '元数据路径', title: '元数据路径',
...@@ -637,8 +645,12 @@ const PartialMatch = ({ item }) => { ...@@ -637,8 +645,12 @@ const PartialMatch = ({ item }) => {
render: (_, record) => record.modelModifiedTs?new Date(record.modelModifiedTs).toLocaleString():'' render: (_, record) => record.modelModifiedTs?new Date(record.modelModifiedTs).toLocaleString():''
}, },
{ {
title: '模型对比前状态',
dataIndex: 'originalModelStatusName',
},
{
title: '模型状态', title: '模型状态',
dataIndex: 'modelStatusName', dataIndex: 'processedModelStatusName',
}, },
{ {
title: '元数据路径', title: '元数据路径',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment