import React,{ Component } from "react"; import { Modal,Checkbox,Upload,Button,Icon,message,Input,Radio} from "antd"; import { WordNumberTextarea } from 'educoder'; import axios from 'axios'; class AppraiseModal extends Component{ constructor(props){ super(props); this.state={ group_ids:[], fileList:[], Inputsval:undefined, textareavaltype:false, comment:undefined, hidden_comment:undefined } } componentDidMount() { let{data,work_comment,work_comment_hidden}=this.props; if(this.props.showAppraisetype==="child"){ data.stage_list.map((item,key)=>{ if(this.props.challenge_id===item.challenge_id){ this.setState({ comment:item.challenge_comment, hidden_comment:item.challenge_comment_hidden, }) } }) }else{ this.setState({ comment:work_comment, hidden_comment:work_comment_hidden, }) } } comment=(e)=>{ this.setState({ comment:e.target.value }) } hidden_comment=(e)=>{ this.setState({ hidden_comment:e.target.value }) } Saves=()=>{ let{comment,hidden_comment}=this.state; let commenttype=comment===undefined||comment===null||comment===""; let hidden_commenttype=hidden_comment===undefined||hidden_comment===null||hidden_comment===""; if(commenttype===true&&hidden_commenttype===true){ this.setState({ textareavaltype:true }) return } //comment 是 text 可见的评阅内容 // hidden_comment 是 text 不可见的评阅内容 // challenge_id 否 int 关卡id(关卡评阅才需传关卡id) let challenge_id=this.props.showAppraisetype==="child"?this.props.challenge_id:undefined let url=`/student_works/${this.props.match.params.homeworkid}/shixun_work_comment.json` axios.post(url, { comment:comment, hidden_comment:hidden_comment, challenge_id:challenge_id }).then((response) => { if(response.data.status===0){ this.props.showCancel(comment,hidden_comment,challenge_id,response.data.comment_id) this.props.showNotification(response.data.message) }else{ this.props.showNotification(response.data.message) } }).catch((error) => { console.log(error) }); } render(){ let {textareavaltype,comment,hidden_comment}=this.state; return(

可见(学生可查看老师的评阅内容)

{/**/} {/*可见 (学生查看老师的评阅内容)*/} {/*不可见 (仅对课堂老师可见)*/} {/**/} this.comment(e)} value={comment} maxlength={500} />

不可见(仅对课堂老师可见)

this.hidden_comment(e)} value={hidden_comment} maxlength={500} />
  • 评阅内容至少有一个不为空
  • this.props.Cancel()}>{this.props.Cancelname || '取消'} {this.props.Savesname || '确定'}
    ) } } export default AppraiseModal;