import React,{ Component } from "react"; import { Modal,Radio,Input,Tooltip,Checkbox,Select, Row,Col ,Spin} from "antd"; import axios from 'axios'; const { Search } = Input; class SendTopics extends Component{ constructor(props){ super(props); this.state={ courses:[], search:null, Radiolist:undefined, showcheck:false, smallisSpin:false, yslbanksMenu:undefined } } componentDidMount(){ // console.log("SendTopicssssssssssss"); // console.log(this.props); let{search}=this.state; this.onupdatalist(search) this.setState({ yslbanksMenu:this.props.banksMenu, }) } onupdatalist=(search)=>{ let url="/question_banks/my_courses.json"; axios.get(url,{params:{ search } }).then((result)=>{ this.setState({ courses:result.data.courses }) }).catch((error)=>{ console.log(error); }) } onSearchChange=(e)=>{ this.setState({ search:e.target.value }) // this.onupdatalist(e.target.value) } onSearch=(search)=>{ this.onupdatalist(search) } onChange=(e)=>{ console.log("SendTopics"); console.log(e); this.setState({ Radiolist:e.target.value }) } submitInfo=()=>{ this.setState({ smallisSpin:true }) let{Radiolist}=this.state; let url=`/question_banks/send_to_course.json`; let object_id=this.props.checkBoxValues; let object_type=this.props.category; if(Radiolist===undefined){ this.setState({ showcheck:true, smallisSpin:false }) }else{ axios.post(url,{ object_id: object_id, object_type:object_type, course_id:Radiolist } ).then((result)=>{ this.setState({ smallisSpin:false }) if(result.data.status===0){ this.props.showNotification(result.data.message); this.props.topicscancelmodel(); // result.data.task_ids; try { this.props.updataslist() }catch (e) { } if(this.props.mysendall===true){ //详情页面跳过来的 try { var rurls=""; if(this.state.yslbanksMenu.category==="normal"){ //普通作业 rurls=`/courses/${this.state.Radiolist}/common_homeworks/${result.data.task_ids}/setting`; }else if(this.state.yslbanksMenu.category==="group"){ //分组作业 rurls=`/courses/${this.state.Radiolist}/group_homeworks/${result.data.task_ids}/setting`; }else if(this.state.yslbanksMenu.category==="exercise"){ // 试卷 rurls=`/courses/${this.state.Radiolist}/exercises/${result.data.task_ids}/student_exercise_list?tab=3`; }else if(this.state.yslbanksMenu.category==="poll") { //问卷 rurls=`/courses/${this.state.Radiolist}/polls/${result.data.task_ids}/detail?tab=3` } window.open(rurls,'_blank'); }catch (e) { } }else{ //外部多个列表页跳过来的 try { var rurls=""; if(this.state.category==="normal"){ //普通作业 rurls=`/courses/${this.state.Radiolist}/common_homeworks/${result.data.category_id}`; }else if(this.state.category==="group"){ //分组作业 rurls=`/courses/${this.state.Radiolist}/group_homeworks/${result.data.category_id}`; }else if(this.state.category==="exercise"){ // 试卷 rurls=`/courses/${this.state.Radiolist}/exercises/${result.data.category_id}`; }else if(this.state.category==="poll") { //问卷 rurls=`courses/${this.state.Radiolist}/polls/${result.data.category_id}` } window.open(rurls,'_blank'); }catch (e) { console.log(e); } } }else{ this.props.showNotification(result.data.message) } }).catch((error)=>{ console.log(error) this.setState({ smallisSpin:false }) }) } } render(){ let{courses,Radiolist,showcheck,smallisSpin}= this.state; const radioStyle = { display: 'block', height: '30px', lineHeight: '30px', }; return(