import React, { Component } from 'react'; import classNames from 'classnames' import axios from 'axios'; import { TPMIndexHOC } from '../../tpm/TPMIndexHOC'; import { SnackbarHOC } from 'educoder' import { message,Modal,Spin,Icon} from 'antd'; import 'antd/dist/antd.css'; import EcTitleCourseEvaluations from '../ecTitle/ecTitle' import '../css/ecCourseSupports.css'; import '../css/ecCourseEvaluations.css'; import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'; import Loadable from 'react-loadable'; import Loading from "../../../Loading"; const $ = window.$; const Curriculumtwo = Loadable({ loader: () => import('./Curriculumtwo'), loading: Loading, }) const EcCourseEvaluationsbottom =Loadable({ loader: () => import('../subroute/ecCourseEvaluations/EcCourseEvaluationsbottom'), loading: Loading, }); const EcCompletionCalculation =Loadable({ loader: () => import('../subroute/ecCompletion_calculation/EcCompletionCalculation'), loading: Loading, }); const EcCourseSupports=Loadable({ loader: () => import('../subroute/ecCourseSupports/EcCourseSupports'), loading: Loading, }); class Curriculum extends Component { //课程体系 constructor(props) { super(props) this.state= { classcalue:5, newec_course_idbottom:"", course_name:undefined, course_url:"a", ecmanager:true, titine:1, } } componentWillMount(){ // window.document.title = '课程达成评价结果'; } componentDidMount(){ console.log(this.props); } sync_course_data=()=>{ // this.setState({listSpin:true}) // let ec_course_id=this.props.match.params.ec_course_id; // let Url ='/ec_course_achievement_methods/sync_course_data'; // axios.post(Url, { // ec_course_id:ec_course_id // }, // { // withCredentials: true // } // ).then((response) => { // if(response.data.status===0){ // this.setState({ // // titlemessage: response.data.message+"(支撑关系变更)", // Modallist: response.data.message, // Modallisttype:true, // listSpin:false // }) // this.UpdateEvaluations(); // }else if(response.data.status===-1){ // this.setState({ // // titlemessage: response.data.message+"(支撑关系变更)", // Modallist: response.data.message, // Modallisttype:true, // listSpin:false // }) // // } // }).catch((error) => { // console.log(error) // }) } onAclick=(i)=>{ console.log("onAclick"); console.log(i); if(i===1){ this.props.history.push(this.props.match.url+"/ec_course_support_setting/1"); }else if(i===2){ this.props.history.push(this.props.match.url+"/ec_course_reach_setting/2"); }else if(i===3){ this.props.history.push(this.props.match.url+"/score_level/3"); }else if(i===4){ this.props.history.push(this.props.match.url+"/evaluation_methods/4"); }else{ this.props.history.push(this.props.match.url+"/competition_calculation_info/5"); } this.setState({ titine:i, }) }; Ontitine=(s)=>{ if(s==="ec_course_support_setting"){ this.setState({ titine:1, }) }else if(s==="ec_course_reach_setting"){ this.setState({ titine:2, }) }else if(s==="score_level"){ this.setState({ titine:3, }) }else if(s==="evaluation_methods"){ this.setState({ titine:4, }) }else if(s==="competition_calculation_info"){ this.setState({ titine:5, }) } }; associatedclass=()=>{ }; deleteassociatedclass=()=>{ } render() { let {newec_course_idbottom,titine,classcalue,course_name,course_url,ecmanager,Spintype,calculatesetype,ec_course_id,course_total_scoreaverage,ec_course_targets_count,schooldata,ecComponentState,course_total_score,total_rate_data,ec_course_targets,graduation_list,target_list,target_score,evaluate_result,morelisttype,titlemessage,completiontype,completionlist,ismanager} = this.state; // console.log("Curriculum"); // console.log(this.props); // console.log(titine); return (
课程体系 > {schooldata&&schooldata.ec_course_name} 达成评价详情 {/* 导出培养目标 */}
系统根据课程目标、课程考核方式与课程目标评价方法,一键计算评价课程目标的达成情况 window.elasticLayer(3533)}>查看详情
{ titine === 4 ? 导出评价方法 :titine === 1 ? 导出课程目标 :titine===2?
导出考核方法 关联课堂 取消关联
:"" }
this.onAclick(1)}>1.课程目标 this.onAclick(2)}>2.课程考核方式与数据来源 this.onAclick(3)}>3.成绩等级设置 this.onAclick(4)} >4.课程目标评价方法 this.onAclick(5)} >5.课程达成评价结果 { titine===5? 导出评价详情 计算 :titine===4? (各环节平均得分*占比)之和/(各环节总分*占比)之和 :titine===3? (将学生的成绩转换成对应的等级) :titine===2? (请在完成配置后,使用各项成绩导入模板,将本学年所有参与的学生成绩数据导入系统) 导入课堂数据 :"" }
{/*Curriculumtwo 测试用*/} {/*课程目标*/} (this.Ontitine(i)} />) }> {/*课程考核方式与数据来源*/} (this.Ontitine(i)}/>) }> {/*成绩等级设置*/} (this.Ontitine(i)}/>) }> {/*课程目标评价方法*/} (this.Ontitine(i)}/>) }> {/*课程达成评价结果*/} (this.Ontitine(i)}/>) }>
) } } export default Curriculum;