forked from Gitlink/forgeplus-react
集群突击issue
This commit is contained in:
parent
00d1359691
commit
a1a89d8498
|
|
@ -146,7 +146,7 @@ function Introduce({ form, match, history, current_user }) {
|
|||
}
|
||||
setTimeout(() => { window.open(response.result.live_url);})
|
||||
}else{
|
||||
message.error(res.msg);
|
||||
message.error(response.msg);
|
||||
}
|
||||
setSimulateUploading(false);
|
||||
})
|
||||
|
|
|
|||
|
|
@ -116,6 +116,12 @@ function Introduce(props) {
|
|||
|
||||
// 模拟记录table
|
||||
const columns = [
|
||||
{
|
||||
title: '算法名称',
|
||||
dataIndex: 'algorithm_name',
|
||||
ellipsis: true,
|
||||
key: 5
|
||||
},
|
||||
{
|
||||
title: '模拟开始时间',
|
||||
dataIndex: 'start_time',
|
||||
|
|
@ -154,6 +160,7 @@ function Introduce(props) {
|
|||
dataIndex: 'id',
|
||||
key: 4,
|
||||
align: 'center',
|
||||
width: "300px",
|
||||
render: (text, record, index) => {
|
||||
return <Fragment>
|
||||
<Button onClick={()=>{gradeDetail(text)}} disabled={record.status !== "finished"}>查看详情</Button>
|
||||
|
|
|
|||
Loading…
Reference in New Issue