import React, {Component} from "react"; import {Link, NavLink} from 'react-router-dom'; import {WordsBtn, ActionBtn, SnackbarHOC, getImageUrl} from 'educoder'; import axios from 'axios'; import { notification, Spin, Table, Pagination, Drawer, Input, Button, Breadcrumb } from "antd"; import {TPMIndexHOC} from "../tpm/TPMIndexHOC"; import Itembankstop from "./component/Itembankstop"; import NoneData from './component/NoneData'; import './questioncss/questioncom.css'; import '../tpm/newshixuns/css/Newshixuns.css'; import Choicequestion from './component/Choicequestion'; import SingleEditor from "./component/SingleEditor"; import ChoquesEditor from "./component/ChoquesEditor" import JudquestionEditor from "./component/JudquestionEditor"; import Paperreview_item from "./Paperreview_item" import Bottomsubmit from "../../modules/modals/Bottomsubmit"; import Comthetestpapers from "./comthetestpaper/Comthetestpapers"; //人工组卷预览 class Paperreview extends Component { constructor(props) { super(props); this.contentMdRef = React.createRef(); this.state = { item_type: null, item_banksedit: [], myquestion_choicesco: [], disciplinesdata: [], knowledgepoints: [], disciplmy: [], single_questions:null, multiple_questions:null, judgement_questions:null, program_questions:null, all_score:0, all_questions_count:0, Cohetepaperbool:false, discipline_id:null, sub_discipline_id:null, tag_discipline_id:null, difficulty:null, name:null, duration:null, } // single_questions:null, 单选题 // multiple_questions:null, 多选题 // judgement_questions:null, 判断题 // program_questions:null, 编程题 // all_score:0, 所有分数 // all_questions_count:0 所有问题数 } //初始化 componentDidMount() { var data = {} this.getdata(data); let urls = `/disciplines.json`; axios.get(urls, { params: { source: "question" } }).then((response) => { if (response) { this.setState({ disciplinesdata: response.data.disciplines, }) if (response.data) { if (response.data.disciplines) { const didata = response.data.disciplines; for (var i = 0; i < didata.length; i++) { const childern=[]; //方向 const fxdidata = didata[i].sub_disciplines; for (var j = 0; j < fxdidata.length; j++) { //课程 const zsddata = fxdidata[j].tag_disciplines; childern.push( { value: fxdidata[j].id, label: fxdidata[j].name, } ) for (var k = 0; k < zsddata.length; k++) { //知识点 this.state.knowledgepoints.push(zsddata[k]); } } const datakec={ value: didata[i].id, label: didata[i].name, children: childern, } this.state.disciplmy.push(datakec); } this.setState({ knowledgepoints: this.state.knowledgepoints, disciplmy:this.state.disciplmy, }) } } } }); } getdata = (data) => { const url = `/item_baskets.json`; this.setState({ booljupyterurls: true, }) axios.get((url), {params: data}).then((response) => { setTimeout(() => { this.setState({ booljupyterurls: false, }) }, 1000); if (response === null || response === undefined) { return } if (response.data.status === 403 || response.data.status === 401 || response.data.status === 500) { } else { } try { this.setState({ Contentdata: response.data, single_questions:response.data.single_questions.questions_count===0? null:response.data.single_questions, multiple_questions:response.data.multiple_questions.questions_count===0? null:response.data.multiple_questions, judgement_questions:response.data.judgement_questions.questions_count===0? null:response.data.judgement_questions, program_questions:response.data.program_questions.questions_count===0? null:response.data.program_questions, all_score:response.data.all_score, all_questions_count:response.data.all_questions_count, }) }catch (e) { } }).catch((error) => { ////console.log(error) this.setState({ booljupyterurls: false, }) }); } //跳转道描点的地方 scrollToAnchor = (anchorName) => { try { if (anchorName) { // 找到锚点 let anchorElement = document.getElementById(anchorName); // 如果对应id的锚点存在,就跳转到锚点 if (anchorElement) { anchorElement.scrollIntoView(); } } } catch (e) { } } preservation = () => { debugger //保存试卷 if(this.state.Cohetepaperbool===true){ if (this.contentMdRef.Getdatas().length === 0) { this.scrollToAnchor("Itembankstopid"); return; } console.log("this.contentMdRef.Getdatas()"); console.log(this.contentMdRef.Getdatas()); var myrbkc=[]; var Getdatasdatas=this.contentMdRef.Getdatas()[2].rbzsd; for(let myda of Getdatasdatas) { myrbkc.push(myda.id); } const url = `/examination_banks.json`; var data={ difficulty:this.contentMdRef.Getdatas()[0].rbnd, name:this.contentMdRef.Getdatas()[4].classroom, duration:this.contentMdRef.Getdatas()[5].kssc, discipline_id: this.contentMdRef.Getdatas()[3].rbkc[0], sub_discipline_id: this.contentMdRef.Getdatas()[3].rbkc[1], tag_discipline_id: myrbkc, } axios.post(url, data) .then((result) => { if (result.data.status == 0) { this.props.showNotification(`组卷成功`); this.props.history.replace('./paperlibrary'); } }).catch((error) => { console.log(error); }) }else{ this.setCohetepaperbool(true); } } setitem_type = (item_type) => { } setCohetepaperbool =(bool)=>{ this.setState({ Cohetepaperbool:bool }) } getcontentMdRef = (Ref) => { this.contentMdRef = Ref; } render() { let {page, limit, count, Headertop, visible, placement, modalsType, item_type,Cohetepaperbool} = this.state; const params = this.props && this.props.match && this.props.match.params; // //console.log(params); return (
{ Cohetepaperbool===false? 试题库 人工组卷 试卷预览 : 试题库 新增试卷 }
{ Cohetepaperbool===false? this.getdata(data)}> : this.getcontentMdRef(ref)} setitem_type={(item) => this.setitem_type(item)} > }
this.setCohetepaperbool(bool)} onSubmits={() => this.preservation()} url={'/question'}>
) } } export default SnackbarHOC()(TPMIndexHOC(Paperreview));