Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
szse
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhaochengxiang
szse
Commits
d596ffe7
Commit
d596ffe7
authored
Apr 30, 2024
by
zhaochengxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
任务结果增加更新时间
parent
d971a30e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
result-detail.jsx
src/view/Manage/ModelCompare/result-detail.jsx
+11
-1
No files found.
src/view/Manage/ModelCompare/result-detail.jsx
View file @
d596ffe7
...
@@ -53,7 +53,7 @@ const Basic = ({ item }) => {
...
@@ -53,7 +53,7 @@ const Basic = ({ item }) => {
<
div
>
<
div
>
<
Descriptions
column=
{
3
}
>
<
Descriptions
column=
{
3
}
>
<
Descriptions
.
Item
label=
'任务名称'
>
{
item
?.
jobName
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
'任务名称'
>
{
item
?.
jobName
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
'模型评审通过时间'
>
{
item
?.
endTs
?
new
Date
(
item
?.
endTs
).
toLocaleString
():
''
}
</
Descriptions
.
Item
>
{
/* <Descriptions.Item label='模型评审通过时间'>{item?.endTs?new Date(item?.endTs).toLocaleString():''}</Descriptions.Item> */
}
<
Descriptions
.
Item
label=
'任务执行时间'
>
{
item
?.
beginTs
?
new
Date
(
item
?.
beginTs
).
toLocaleString
():
''
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
'任务执行时间'
>
{
item
?.
beginTs
?
new
Date
(
item
?.
beginTs
).
toLocaleString
():
''
}
</
Descriptions
.
Item
>
</
Descriptions
>
</
Descriptions
>
<
Descriptions
column=
{
5
}
>
<
Descriptions
column=
{
5
}
>
...
@@ -156,6 +156,16 @@ const PerfectMatch = ({ item }) => {
...
@@ -156,6 +156,16 @@ const PerfectMatch = ({ item }) => {
dataIndex: 'modelName',
dataIndex: 'modelName',
},
},
{
{
title: '模型更新时间',
dataIndex: 'modelModifiedTs',
render: (_, record) => record.modelModifiedTs?new Date(record.modelModifiedTs).toLocaleString():''
},
{
title: '元数据更新时间',
dataIndex: 'metadataModifiedTs',
render: (_, record) => record.metadataModifiedTs?new Date(record.metadataModifiedTs).toLocaleString():''
},
{
title: '元数据路径',
title: '元数据路径',
dataIndex: 'metadataPath',
dataIndex: 'metadataPath',
render: (_, record) => {
render: (_, record) => {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment