import React,{ Component } from "react"; import { Modal,Checkbox,Select,Input,Tooltip,Spin,Icon } from "antd"; import axios from'axios'; import Modals from '../../modals/Modals'; const Search = Input.Search; class PathModal extends Component{ constructor(props){ super(props); this.state={ StudentList_value:"", Searchvalue:undefined, type:'all', page:1, patheditarry:undefined, newshixunmodallist:undefined, hometypepvisible: false, shixunmodallist:undefined, } } hidecouseShixunModal=()=>{ this.props.hidecouseShixunModal() } componentDidMount(){ this.setState({ hometypepvisible: true, patheditarry: [], checkBoxValues: [], }) let coursesId = this.props.match.params.coursesId; let url = "/courses/" + coursesId + "/homework_commons/subjects.json"; axios.get(url).then((result) => { if (result.status === 200) { this.setState({ shixunpath: true, shixunmodallist: result.data, hometypepvisible: false, newshixunmodallist: result.data.subject_list, }) } }).catch((error) => { console.log(error); }) } funshixunpathlist=(search,type,loading,page)=>{ let{newshixunmodallist}=this.state; let newshixunmodallists=[] if(page>1){ newshixunmodallists=newshixunmodallist; } this.setState({ hometypepvisible:loading }) let coursesId=this.props.match.params.coursesId; let url ="/courses/"+coursesId+"/homework_commons/subjects.json"; axios.get(url, { params: { search: search, type:type, page:page } }).then((result)=>{ if(result.status===200){ let shixun_list=result.data.subject_list; for(var i=0; i{ console.log(error); }) } //tag changeTag=(types)=>{ let {Searchvalue}=this.state; this.setState({ type:types, page:1, newshixunmodallist:undefined }) this.funshixunpathlist(Searchvalue,types,true,1) } //搜索 SenttotheValue=(e)=>{ this.setState({ Searchvalue:e.target.value }) } SenttotheSearch=(value)=>{ this.setState({ page:1, newshixunmodallist:undefined }) let{type}=this.state; this.funshixunpathlist(value,type,true,1) } //勾选实训 shixunhomeworkedit=(list)=>{ this.setState({ patheditarry:list }) // this.props.funpatheditarry(newpatheditarry) } contentViewScrolledit=(e)=>{ //滑动到底判断 const {shixunmodallist} = this.state; if(e.currentTarget.scrollHeight-e.currentTarget.scrollTop===e.currentTarget.clientHeight){ if(shixunmodallist.subject_list.length===0){ return; }else{ let {Searchvalue,type,page,shixunpathlist}=this.state; let newpage=page+1 this.funshixunpathlist(Searchvalue,type,true,newpage) this.setState({ page:newpage }) } } } //提交 savecouseShixunModal=()=>{ this.setState({ hometypepvisible:true }) let {patheditarry}=this.state; let {coursesId}=this.props; let url="/courses/"+coursesId+"/homework_commons/create_subject_homework.json"; if(patheditarry===undefined){ this.setState({ patheditarrytype:true, patheditarryvalue:"请先选择实践课程", hometypepvisible:false }) return }else if(patheditarry.length===0){ this.setState({ patheditarrytype:true, patheditarryvalue:"请先选择实践课程", hometypepvisible:false }) return } axios.post(url, { // category_id: datas&&datas.category_name===undefined||datas&&datas.category_name===null?undefined:category_id, subject_ids:patheditarry, } ).then((response) => { if(response.data.status===-1){ // this.setState({ // Modalstype:true, // Modalstopval:response.data.message, // ModalsBottomval:"", // ModalSave:this.cancelmodel, // Loadtype:true // }) this.props.showNotification(response.data.message) }else{ // this.homeworkstart //调用立即发布弹窗 // this.props.showNotification(response.data.message) this.props.hidecouseShixunModal(); this.props.updataleftNavfun() // this.props.courseshomeworkstart(response.data.category_id,response.data.homework_ids) // this.props.showNotification("选用成功") // this.props.showNotification(response.data.message) this.props.homeworkupdatalists(this.props.Coursename,this.props.page,this.props.order); } // if(response.status===200) { // this.props.courseshomeworkstart(response.data.category_id,response.data.homework_ids) // } this.setState({ hometypepvisible:false }) }).catch((error) => { console.log(error) }) } render(){ let {Searchvalue,type,Modalstype,newshixunmodallist,hometypepvisible,shixunmodallist}=this.state; let {visible}=this.props; const antIcon = ; return(
{/*提示*/} {Modalstype&&Modalstype===true?:""}
{ shixunmodallist && shixunmodallist.tags.length===0?"":}
{shixunmodallist === undefined ? "":shixunmodallist.subjects_count} 个实践课程
this.SenttotheSearch(value)} style={{width: '115%'}} />
  • 实训路径名称
  • 已发布实训数
  • 使用人数
{ newshixunmodallist === undefined ?
:newshixunmodallist&&newshixunmodallist.length===0?

暂时还没有相关数据哦!

:
{ newshixunmodallist&&newshixunmodallist.map((item,key)=>{ return(
  • {item.shixun_count}
  • {item.myshixun_count}
  • 详情
  • ) }) }
    } { this.state.patheditarrytype===true?{this.state.patheditarryvalue}:""}
    ) } } export default PathModal;