集群突击issue

This commit is contained in:
谢思 2023-02-21 11:44:57 +08:00
parent 00d1359691
commit a1a89d8498
2 changed files with 8 additions and 1 deletions

View File

@ -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);
})

View File

@ -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>