dev_ec
hjm 5 years ago
parent 493dae25c2
commit e7a6146d19

@ -143,6 +143,9 @@ class EcSetting extends React.Component {
render={ (props) => (<CourseSupports {...this.props} {...props} {...this.state} />) }></Route> render={ (props) => (<CourseSupports {...this.props} {...props} {...this.state} />) }></Route>
{/*达成度评价结果*/}
<Route extra path='/ecs/major_schools/:major_school_id/years/:ec_year_id/reach_calculation_info'
render={ (props) => (<CourseSupports {...this.props} {...props} {...this.state} />) }></Route>
</Switch> </Switch>
) )

@ -6,12 +6,12 @@ import axios from 'axios';
import { Table, Divider, Tag, Checkbox, InputNumber, Spin, Icon } from 'antd'; import { Table, Divider, Tag, Checkbox, InputNumber, Spin, Icon } from 'antd';
import EcTitleCourseEvaluations from '../ecTitle/ecTitle' // import EcTitleCourseEvaluations from '../ecTitle/ecTitle'
import { ECModalHOC } from '../common/ECModalHOC' import { ECModalHOC } from '../../common/ECModalHOC'
import 'antd/lib/style/index.css'; import 'antd/lib/style/index.css';
import './style.css' import './style.scss'
const onCheckBoxClick = (that, rowData) =>{ const onCheckBoxClick = (that, rowData) =>{
@ -596,14 +596,7 @@ class GraduatesRequirement extends Component {
// showCalculateButton = true; // showCalculateButton = true;
// } // }
return ( return (
<div className="newMain clearfix">
<div className="educontent mb290">
<EcTitleCourseEvaluations
{...this.props}
schooldata={schooldata}
ecComponentState={'ecCompletion'}
ecpath={"reach_calculation_info"}
></EcTitleCourseEvaluations>
<div className="contentWrap graduatesRequirement"> <div className="contentWrap graduatesRequirement">
<ul className="clearfix padding20-30 bor-bottom-greyE backgroundFFF" <ul className="clearfix padding20-30 bor-bottom-greyE backgroundFFF"
@ -676,8 +669,7 @@ class GraduatesRequirement extends Component {
></Table> ></Table>
</div> </div>
</div>
</div>
); );
} }
} }

@ -0,0 +1,74 @@
.newMain {
height: 100%;
}
.contentWrap {
height: 100%;
overflow: auto;
}
.bor-bottom-greyE {
border-bottom: 1px solid #EEEEEE!important;
}
.padding20-30 {
padding: 20px 30px;
box-sizing: border-box;
}
.clearfix {
clear: both;
zoom: 1;
}
.bor-bottom-greyE {
border-bottom: 1px solid #EEEEEE!important;
}
.courseSystem, .SystemParameters {
font-family: MicrosoftYaHei;
font-weight: 400;
line-height: 45px;
}
.courseSystem {
font-size: 18px;
color: #05101a;
}
.font-18 {
font-size: 18px!important;
}
.fl {
float: left!important;
}
.backgroundFFF{
background: #FFF;
}
.ant-table-body table thead tr th{
background: #FFF;
}
.ant-table-body table .ant-table-thead :nth-child(1) th{
border-right: 1px solid #e8e8e8;
}
.ant-table-body table .ant-table-thead :nth-child(1) :nth-child(4){
/* border-right: 1px solid transparent; */
}
.ant-table-body table .ant-table-thead :nth-child(2) th{
border-top: 1px solid #e8e8e8;
border-right: 1px solid #e8e8e8;
}
.ant-table-bordered .ant-table-thead > tr > th, .ant-table-bordered .ant-table-tbody > tr > td {
text-align: center;
}
.graduatesRequirement .ant-table-wrapper {
padding: 20px 10px;
background: #fff;
margin-top: -16px;
margin-bottom: 40px;
}
.graduatesRequirement .ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row) > td,
.graduatesRequirement .ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row) > td,
.graduatesRequirement .ant-table-thead > tr:hover:not(.ant-table-expanded-row) > td,
.graduatesRequirement .ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
background: transparent !important;
}
.mt60{
margin-top:60px;
}
Loading…
Cancel
Save