import React,{ Component } from "react"; import { Modal,Checkbox,Select,Input,Tooltip,Spin,Icon} from "antd"; import axios from'axios'; const Option = Select.Option; const Search = Input.Search; class ShixunModal extends Component{ constructor(props){ super(props); this.state={ Searchvalue:undefined, type:'all', category_id:0, page:1 } } componentDidMount() { } //勾选实训 shixunhomeworkedit=(list)=>{ let newpatheditarry=[]; if (this.props.singleChoose == true) { if (list.length > 0) { newpatheditarry.push(list[list.length - 1]) } } else { for(var i=0; i{ //滑动到底判断 if(e.currentTarget.scrollHeight-e.currentTarget.scrollTop===e.currentTarget.clientHeight){ let {Searchvalue,type,page}=this.state; let newpage=page+1 this.props.funshixunmodallist(Searchvalue,type,true,newpage) this.setState({ page:newpage }) } } //搜索 SenttotheValue=(e)=>{ this.setState({ Searchvalue:e.target.value }) } SenttotheSearch=(value)=>{ let{type}=this.state; this.setState({ page:1, }) this.props.funshixunmodallist(value,type,true,1) this.props.funpatheditarry([]) } //tag changeTag=(types)=>{ let {Searchvalue}=this.state; this.setState({ type:types, page:1, }) this.props.funshixunmodallist(Searchvalue,types,true,1) this.props.funpatheditarry([]) } hidecouseShixunModal=()=>{ this.props.hidecouseShixunModal() } savecouseShixunModal=()=>{ let {coursesId,patheditarry,datas}=this.props; let{category_id}=this.state; if (this.props.chooseShixun) { this.props.chooseShixun(patheditarry) return; } if(patheditarry.length===0){ this.setState({ shixunmodelchke:true, chekicmessage:"请先选择实训" }) return } let url="/courses/"+coursesId+"/homework_commons/create_shixun_homework.json"; axios.post(url, { category_id:this.props.category_id===null||this.props.category_id===undefined?undefined:parseInt(this.props.category_id), shixun_ids:patheditarry, } ).then((response) => { if(response.data.status===-1){ // this.props.showNotification(response.data.message) }else{ this.props.courseshomeworkstart(response.data.category_id,response.data.homework_ids) this.props.hidecouseShixunModal() } // category_id: 3 // homework_ids: (5) [9171, 9172, 9173, 9174, 9175] }).catch((error) => { console.log(error) }) } selectCloseList=(value)=>{ this.setState({ category_id:value }) } render(){ let {Searchvalue,type,category_id}=this.state; let {visible,shixunmodallist,hometypepvisible,newshixunmodallist,patheditarry}=this.props; const antIcon = ; // console.log(patheditarry) return(
{/**/} {/*{*/} {/*shixunmodallist === undefined ? "":shixunmodallist.homework_category.length>0?
*/} {/*
选择目录名称:
*/} {/*
*/} {/**/} {/*{ shixunmodallist.main_category.map((item,key)=>{*/} {/*return(*/} {/**/} {/*)*/} {/*})*/} {/*}*/} {/*{*/} {/*shixunmodallist.homework_category.map((item,key)=>{*/} {/*return(*/} {/**/} {/*)*/} {/*})*/} {/*}*/} {/**/} {/*
*/} {/*
:""}*/}
{shixunmodallist === undefined ? "":shixunmodallist.shixuns_count} 个实训
this.SenttotheSearch(value)} style={{width: '115%'}} />
{ }
  • 实训名称
  • 使用院校
  • 使用人数
  • 评价等级
{ newshixunmodallist === undefined ? "": newshixunmodallist.map((item,key)=>{ return(
  • {item.shixun_name}
  • {item.school_users}
  • {item.myshixuns_count}
  • {item.preference}
  • 详情
  • ) }) }
    {this.state.shixunmodelchke===true?{this.state.chekicmessage}:""}
    ) } } export default ShixunModal;