import React,{ Component } from "react"; import { Modal,Checkbox,DatePicker} from "antd"; import { handleDateString } from 'educoder'; import locale from 'antd/lib/date-picker/locale/zh_CN'; import moment from 'moment'; const CheckboxGroup = Checkbox.Group; const dateFormat = 'YYYY-MM-DD HH:mm'; function range(start, end) { const result = []; for (let i = start; i < end; i++) { result.push(i); } return result; } function disabledDateTime() { return { // disabledHours: () => range(0, 24).splice(4, 20), disabledMinutes: () => range(1, 30).concat(range(31, 60)), // disabledSeconds: () => [55, 56], }; } function disabledDate(current) { return current && current < moment().endOf('day').subtract(1, 'days'); } class OneSelfOrderModal extends Component{ constructor(props){ super(props); this.state={ group_ids:[], endtime:"", course_groups:undefined, Checkboxtype:true } } componentDidMount() { if(this.props.course_groups!=undefined&&this.props.course_groups.length!=0){ if(this.props.course_groups!=undefined) { let arr = this.props.course_groups.map(item => item.id); let newarr = []; let course_groups = this.props.course_groups; course_groups.map((item, key) => { if (item.end_time === null) { // if(this.props.starttimesend===undefined){ // item.end_time = moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm"); // }else{ // item.end_time = moment(handleDateString(this.props.starttimesend)).format("YYYY-MM-DD HH:mm"); // } item.end_time = moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm"); newarr.push(item) } else { newarr.push(item) } }) this.setState({ course_groups: newarr }) this.shixunhomeworkedit(arr); } } if(this.props.starttimes===undefined||this.props.starttimes===""||this.props.starttimes===null){ if(this.props.starttimesend===undefined){ this.setState({ endtime:moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm") }) }else{ this.setState({ endtime:moment(handleDateString(this.props.starttimesend)).format("YYYY-MM-DD HH:mm") }) } }else{ if(this.props.starttimesend===undefined){ this.setState({ endtime:moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm") }) }else{ this.setState({ endtime:moment(handleDateString(this.props.starttimesend)).format("YYYY-MM-DD HH:mm") }) } } } componentDidUpdate=(prevProps)=>{ if(prevProps.course_groups!=this.props.course_groups){ if(this.props.course_groups!=undefined){ let arr=this.props.course_groups.map(item => item.id); let newarr=[]; let course_groups=this.props.course_groups; course_groups.map((item,key)=>{ if(item.end_time===null){ item.end_time = moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm"); newarr.push(item) }else{ newarr.push(item) } }) this.setState({ course_groups:newarr }) this.shixunhomeworkedit(arr); } } if(prevProps.starttimes!=this.props.starttimes){ if(this.props.starttimes===undefined||this.props.starttimes===""||this.props.starttimes===null){ if(this.props.starttimesend===undefined){ this.setState({ endtime:moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm") }) }else{ this.setState({ endtime:moment(handleDateString(this.props.starttimesend)).format("YYYY-MM-DD HH:mm") }) } }else{ if(this.props.starttimesend===undefined){ this.setState({ endtime:moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm") }) }else{ this.setState({ endtime:moment(handleDateString(this.props.starttimesend)).format("YYYY-MM-DD HH:mm") }) } } } } //勾选实训 shixunhomeworkedit=(list)=>{ this.setState({ group_ids:list }) this.props.getcourse_groupslist && this.props.getcourse_groupslist(list) } onChangeTimeend= (date, dateString) => { // console.log('startValue',dateString); this.setState({ endtime: date===null?"":handleDateString(dateString), }) } onChangeTimeendlist=(date, dateString,id)=>{ let {course_groups,endtimetypeid}=this.state; if(endtimetypeid===id){ if(date!=null){ this.setState({ endtimetypeid:undefined }) } if(moment(dateString,"YYYY-MM-DD HH:mm") <= moment(this.props.starttime,"YYYY-MM-DD HH:mm")){}else{ if(date!=null){ this.setState({ endtimetypeid:undefined }) } } } let arr=course_groups; arr.map((item,key)=>{ if(item.id===id){ item.end_time=date===null?"":moment(handleDateString(dateString)).format('YYYY-MM-DD HH:mm') } }) this.setState({ course_groups:arr }) } propsSaves=(ds,endtime)=>{ let {course_groups}=this.state; if(this.props.typs=="end"){ this.props.Saves() }else{ if(this.props.typs!="end"){ if(!endtime){ this.setState({ endtimetype:true, endtimetypevalue:"截止时间不能为空" }) return } if(moment(endtime,"YYYY-MM-DD HH:mm") <= moment(this.props.starttime,"YYYY-MM-DD HH:mm")){ this.setState({ endtimetype:true, endtimetypevalue:"必须晚于当前时间" }) return } } let type=false if(course_groups===undefined||course_groups.length===0){ this.props.Saves(ds,moment(handleDateString(endtime),"YYYY-MM-DD HH:mm").format("YYYY-MM-DD HH:mm")) }else{ let arr=[] ds.map((item,key)=>{ course_groups.map((items,key)=>{ if(item===items.id){ if(!items.end_time){ type=true this.setState({ endtimetype:true, endtimetypeid:items.id, endtimetypevalue:"截止时间不能为空" }) return // arr.push(moment(moment(handleDateString(this.props.staytime)).add(1, 'week')).format("YYYY-MM-DD HH:mm")) }else{ if(moment(items.end_time,"YYYY-MM-DD HH:mm") <= moment(this.props.starttime,"YYYY-MM-DD HH:mm")){ this.setState({ endtimetype:true, endtimetypevalue:"必须晚于当前时间" }) return } arr.push(items.end_time) } } }) }) if(type===false){ this.props.Saves(ds,arr) } } } } Checkboxtype=(e)=>{ let {course_groups}=this.state; let arr=[]; if(e.target.checked==true){ course_groups.map((item,key)=>{ arr.push(item.id) }) }else{ arr=[] } this.setState({ Checkboxtype:e.target.checked, group_ids:arr }) } render(){ let {group_ids,endtime,course_groups}=this.state; console.log(this.props.modaltype) let course_groupstype=course_groups===undefined||course_groups.length===0; // TODO course_groups为空时的处理 return(
发布设置均可修改, 点击修改
此设置将对所有分班生效
{this.props.Topval} {this.props.Topvalright}
{/**/} {/*{this.props.Botvalleft===undefined?"":"{this.props.Botvalleft}"}*/} {/*{this.props.Botval}*/} {/*
*/}
{/**/}
{/*发布时间:*/}
{/*{this.props.starttime}*/}
{this.props.modaltype===undefined||this.props.modaltype===2?
{/*{this.props.endtime}*/}
截止时间