import React,{ Component } from "react"; import { WordsBtn } from 'educoder'; import {Tooltip,message,Modal,Spin} from 'antd'; import {Link} from 'react-router-dom'; import axios from 'axios'; import Modals from '../../modals/Modals'; class Startshixuntask extends Component{ constructor(props){ super(props); this.state = { startbtn:false, isSpin:false, } } componentDidMount() { } taskoperationId=(list)=>{ this.setState({ startbtn:true, }) let url= list+".json"; axios.get(url).then((response) => { if(response.status===200){ if(response.data.status===-2){ this.setState({ startbtn:false, shixunsreplace:true, hidestartshixunsreplacevalue:response.data.message+".json" }) }else if(response.data.status===-1){ console.log(response) }else if(response.data.status===-3){ this.setState({ shixunsmessage:response.data.message, startshixunCombattype:true, startbtn:false }) }else{ if(response.data.status!=401&&response.data.status!=403){ const w=window.open('about:blank'); w.location.href= "/tasks/"+response.data.game_identifier } } } }).catch((error) => { this.setState({ startbtn:false }) }); } hidestartshixunsreplace=(url)=>{ this.setState({ isSpin:true }) axios.get(url).then((response) => { if(response.status===200){ this.setState({ shixunsreplace:false, isSpin:false, }) message.success('重置成功,正在进入实训!'); let path="/shixuns/"+response.data.shixun_identifier+"/challenges"; this.props.history.push(path); }} ).catch((error) => { this.setState({ startbtn:false, shixunsreplace:false, isSpin:false, }) }); } hidestartshixunCombattype=()=>{ this.setState({ startshixunCombattype:false }) } render(){ let { Modalstype, Modalstopval, Modalsbottomval, cardsModalcancel, cardsModalsavetype, loadtype, shixunsreplace, hidestartshixunsreplacevalue, startshixunCombattype, shixunsmessage, startbtn, isSpin } = this.state; return(

实训已经更新了,正在为您重置!

this.hidestartshixunsreplace(hidestartshixunsreplacevalue)}>知道了

本实训的开启时间:{shixunsmessage}
开启时间之前不能挑战

{/*取消*/} 知道啦
{/*

*/} {/*知道了*/} {/*

*/}
{this.props.isStudent? {this.props.data&&this.props.data.task_operation&&this.props.data.task_operation?startbtn===false?this.taskoperationId( this.props.data&&this.props.data.task_operation[1])}> {this.props.data&&this.props.data.task_operation[0]} :"开启中":""} :"" } ) } } export default Startshixuntask;