dev_jupyter
parent
3aaa2c6776
commit
952ffd1043
@ -0,0 +1,745 @@
|
|||||||
|
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,
|
||||||
|
Radio,
|
||||||
|
Checkbox,
|
||||||
|
Form,
|
||||||
|
Input,
|
||||||
|
Select,
|
||||||
|
Cascader,
|
||||||
|
Col, Row, InputNumber, DatePicker, AutoComplete, Button, Tag
|
||||||
|
} from "antd";
|
||||||
|
import './../questioncss/questioncom.css';
|
||||||
|
import Newknledpots from '../component/Newknledpots'
|
||||||
|
const InputGroup = Input.Group;
|
||||||
|
const {Option} = Select;
|
||||||
|
const options = [
|
||||||
|
{
|
||||||
|
value: '方向',
|
||||||
|
label: '方向',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
value: '课程',
|
||||||
|
label: '课程',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'jiangsu',
|
||||||
|
label: 'Jiangsu',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
value: 'nanjing',
|
||||||
|
label: 'Nanjing',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
class Comthetestpaperst extends Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.contentMdRef = React.createRef()
|
||||||
|
this.state = {
|
||||||
|
page: 1,
|
||||||
|
Knowpoints: [],
|
||||||
|
rbtx: undefined,
|
||||||
|
rbkc: undefined,
|
||||||
|
knowledgepoints: [],
|
||||||
|
knowledgepoints2:[],
|
||||||
|
options: [],
|
||||||
|
NewknTypedel:false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//初始化
|
||||||
|
componentDidMount() {
|
||||||
|
try {
|
||||||
|
this.props.getcontentMdRef(this);
|
||||||
|
} catch (e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
this.setState({
|
||||||
|
options: this.props.disciplmy,
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidUpdate(prevProps) {
|
||||||
|
//编辑的时候
|
||||||
|
if (prevProps.item_banksedit !== this.props.item_banksedit) {
|
||||||
|
// if (this.props.item_banksedit.item_type) {
|
||||||
|
// this.handleFormtixing(this.props.item_banksedit.item_type);
|
||||||
|
// }
|
||||||
|
if (this.props.item_banksedit.difficulty) {
|
||||||
|
this.handleFormLayoutChange(this.props.item_banksedit.difficulty);
|
||||||
|
}
|
||||||
|
if (this.props.item_banksedit.tag_disciplines) {
|
||||||
|
this.handletag_disciplinesChange(this.props.item_banksedit.tag_disciplines);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
this.handdisciplinesChange(this.props.item_banksedit.discipline,this.props.item_banksedit.sub_discipline);
|
||||||
|
}catch (e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (prevProps.disciplmy !== this.props.disciplmy) {
|
||||||
|
this.setState({
|
||||||
|
options: this.props.disciplmy
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 把知识点放进塞选中 ,如果是编辑 已经选中就不放进去
|
||||||
|
if(prevProps.disciplinesdata!== this.props.disciplinesdata){
|
||||||
|
try {
|
||||||
|
if(this.props.item_banksedit.discipline &&this.props.item_banksedit.sub_discipline){
|
||||||
|
const didata = this.props.disciplinesdata;
|
||||||
|
const knowledgepointsdata = [];
|
||||||
|
for (var i = 0; i < didata.length; i++) {
|
||||||
|
//方向
|
||||||
|
if (this.props.item_banksedit.discipline.id === didata[i].id) {
|
||||||
|
const fxdidata = didata[i].sub_disciplines;
|
||||||
|
for (var j = 0; j < fxdidata.length; j++) {
|
||||||
|
//课程
|
||||||
|
if (this.props.item_banksedit.sub_discipline.id === fxdidata[j].id) {
|
||||||
|
const zsddata = fxdidata[j].tag_disciplines;
|
||||||
|
for (var k = 0; k < zsddata.length; k++) {
|
||||||
|
//知识点
|
||||||
|
knowledgepointsdata.push(zsddata[k]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const _result =[];
|
||||||
|
knowledgepointsdata.filter(item => {
|
||||||
|
if (this.props.item_banksedit.tag_disciplines.findIndex(t => t.id === item.id) === -1) {
|
||||||
|
_result.push(item);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.setState({
|
||||||
|
knowledgepoints:knowledgepointsdata,
|
||||||
|
knowledgepoints2: _result,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}catch (e) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
handdisciplinesChange =(name,title)=>{
|
||||||
|
this.setState({
|
||||||
|
rbkc:[name.id,title.id]
|
||||||
|
})
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbkc: [name.id,title.id],
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
handleSearch=(value)=>{
|
||||||
|
|
||||||
|
|
||||||
|
if(value!=""){
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
classroom:value,
|
||||||
|
// course:value
|
||||||
|
});
|
||||||
|
// this.Searchvalue(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
handleChange=(e)=>{
|
||||||
|
console.log(e);
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
// course:value,
|
||||||
|
classroom:e.target.value,
|
||||||
|
})
|
||||||
|
if(e.target.value){
|
||||||
|
if(e.target.value.length>60){
|
||||||
|
this.setState({
|
||||||
|
bordebool:true,
|
||||||
|
})
|
||||||
|
}else if(e.target.value.length===0){
|
||||||
|
this.setState({
|
||||||
|
bordebool:true,
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
this.setState({
|
||||||
|
bordebool:false,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
this.setState({
|
||||||
|
bordebool:true
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
handletag_disciplinesChange = (data) => {
|
||||||
|
//是否选中的知识点
|
||||||
|
try {
|
||||||
|
var sju=data[data.length-1].name;
|
||||||
|
this.setState({
|
||||||
|
Knowpoints:data,
|
||||||
|
})
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbzsd: sju,
|
||||||
|
});
|
||||||
|
}catch (e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
onChange = (e) => {
|
||||||
|
|
||||||
|
}
|
||||||
|
Getdatas = () => {
|
||||||
|
return this.handleSubmits();
|
||||||
|
}
|
||||||
|
handleSubmits = () => {
|
||||||
|
var data = [];
|
||||||
|
this.props.form.validateFields((err, values) => {
|
||||||
|
data = [];
|
||||||
|
|
||||||
|
if (!err) {
|
||||||
|
data.push({
|
||||||
|
rbnd: parseInt(values.rbnd)
|
||||||
|
})
|
||||||
|
data.push({
|
||||||
|
rbtx: null
|
||||||
|
})
|
||||||
|
data.push({
|
||||||
|
rbzsd: this.state.Knowpoints
|
||||||
|
})
|
||||||
|
data.push({
|
||||||
|
rbkc: values.rbkc
|
||||||
|
})
|
||||||
|
data.push({
|
||||||
|
classroom:values.classroom
|
||||||
|
})
|
||||||
|
data.push({
|
||||||
|
kssc:values.kssc
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return data;
|
||||||
|
|
||||||
|
}
|
||||||
|
handleSubmit = (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
this.props.form.validateFields((err, values) => {
|
||||||
|
if (!err) {
|
||||||
|
////console.log("获取的form 数据");
|
||||||
|
////console.log(values);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
handleFormLayoutChange = (value) => {
|
||||||
|
//难度塞选
|
||||||
|
////console.log("难度塞选");
|
||||||
|
////console.log(value);
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbnd: value + "",
|
||||||
|
});
|
||||||
|
this.setState({
|
||||||
|
rbnd: value + "",
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
handleFormkechen = (value) => {
|
||||||
|
//课程
|
||||||
|
////console.log("课程");
|
||||||
|
////console.log(value);
|
||||||
|
if(this.state.Knowpoints.length>4){
|
||||||
|
this.props.showNotification(`知识点最多选择5个`);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var valuename = undefined;
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbzsd: value,
|
||||||
|
});
|
||||||
|
|
||||||
|
var arr = this.state.knowledgepoints;
|
||||||
|
for (let data of arr) {
|
||||||
|
if (data.id === value) {
|
||||||
|
this.state.Knowpoints.push(data);
|
||||||
|
valuename = data.name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const _result =[];
|
||||||
|
this.state.knowledgepoints.filter(item => {
|
||||||
|
if (this.state.Knowpoints.findIndex(t => t.id === item.id) === -1) {
|
||||||
|
console.log("guonue");
|
||||||
|
console.log(item);
|
||||||
|
_result.push(item);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
this.setState({
|
||||||
|
rbzsd: valuename,
|
||||||
|
Knowpoints: this.state.Knowpoints,
|
||||||
|
knowledgepoints2: _result,
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
handleFormzhishidian = (value) => {
|
||||||
|
console.log("handleFormzhishidian 课程");
|
||||||
|
console.log(value);
|
||||||
|
|
||||||
|
//课程
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbkc: value,
|
||||||
|
});
|
||||||
|
this.setState({
|
||||||
|
rbkc:value,
|
||||||
|
})
|
||||||
|
// console.log("handleFormzhishidian");
|
||||||
|
// console.log(this.props.disciplinesdata);
|
||||||
|
|
||||||
|
const didata = this.props.disciplinesdata;
|
||||||
|
const knowledgepointsdata = [];
|
||||||
|
|
||||||
|
for (var i = 0; i < didata.length; i++) {
|
||||||
|
//方向
|
||||||
|
if (value[0] === didata[i].id) {
|
||||||
|
const fxdidata = didata[i].sub_disciplines;
|
||||||
|
for (var j = 0; j < fxdidata.length; j++) {
|
||||||
|
//课程
|
||||||
|
if (value[1] === fxdidata[j].id) {
|
||||||
|
const zsddata = fxdidata[j].tag_disciplines;
|
||||||
|
for (var k = 0; k < zsddata.length; k++) {
|
||||||
|
//知识点
|
||||||
|
knowledgepointsdata.push(zsddata[k]);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setState({
|
||||||
|
Knowpoints: [],
|
||||||
|
knowledgepoints: knowledgepointsdata,
|
||||||
|
knowledgepoints2:knowledgepointsdata,
|
||||||
|
})
|
||||||
|
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbzsd: undefined,
|
||||||
|
});
|
||||||
|
this.setState({
|
||||||
|
rbzsd: undefined,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
handleFormtixing = (value) => {
|
||||||
|
//题型
|
||||||
|
//console.log("题型");
|
||||||
|
//console.log(value);
|
||||||
|
this.setState({
|
||||||
|
rbtx: value + "",
|
||||||
|
})
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbtx: value + "",
|
||||||
|
});
|
||||||
|
this.props.setitem_type(value);
|
||||||
|
}
|
||||||
|
preventDefault = (e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
////console.log('Clicked! But prevent default.');
|
||||||
|
}
|
||||||
|
deletesobject = (item, index) => {
|
||||||
|
|
||||||
|
var tmp = this.state.Knowpoints;
|
||||||
|
for (var i = 0; i < tmp.length; i++) {
|
||||||
|
if (i ===index) {
|
||||||
|
tmp.splice(i,1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.props.form.setFieldsValue({
|
||||||
|
rbzsd: this.state.Knowpoints,
|
||||||
|
});
|
||||||
|
|
||||||
|
const _result =[];
|
||||||
|
this.state.knowledgepoints.filter(item => {
|
||||||
|
if (this.state.Knowpoints.findIndex(t => t.id === item.id) === -1) {
|
||||||
|
_result.push(item);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.setState({
|
||||||
|
Knowpoints: this.state.Knowpoints,
|
||||||
|
knowledgepoints2:_result,
|
||||||
|
})
|
||||||
|
if (this.state.Knowpoints.length === 0) {
|
||||||
|
this.setState({
|
||||||
|
rbzsd: undefined,
|
||||||
|
})
|
||||||
|
} else if (this.state.Knowpoints.length > 0) {
|
||||||
|
try {
|
||||||
|
const myknowda = this.state.Knowpoints;
|
||||||
|
this.setState({
|
||||||
|
rbzsd: myknowda[this.state.Knowpoints.length - 1].name,
|
||||||
|
})
|
||||||
|
} catch (e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
NewknTypedeldel=(bool)=>{
|
||||||
|
this.setState({
|
||||||
|
NewknTypedel:bool
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
NewknTypedeltyoedel=(value)=>{
|
||||||
|
|
||||||
|
if(value===null||value===""){
|
||||||
|
this.props.showNotification(`请输入知识点`);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if(value.length===0){
|
||||||
|
this.props.showNotification(`请输入知识点`);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if(this.state.rbkc===undefined || this.state.rbkc===null || this.state.rbkc===""){
|
||||||
|
this.props.showNotification(`请选择课程方向`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var data={
|
||||||
|
name:value,
|
||||||
|
sub_discipline_id:this.state.rbkc[1]
|
||||||
|
}
|
||||||
|
const url="/tag_disciplines.json";
|
||||||
|
axios.post(url,data)
|
||||||
|
.then((result) => {
|
||||||
|
if (result.data.status === 0) {
|
||||||
|
this.props.showNotification(`新增知识点成功!`);
|
||||||
|
var leydata={
|
||||||
|
id: result.data.tag_discipline_id,
|
||||||
|
name:value,
|
||||||
|
}
|
||||||
|
this.state.knowledgepoints.push(leydata);
|
||||||
|
const _result =[];
|
||||||
|
this.state.knowledgepoints.filter(item => {
|
||||||
|
if (this.state.Knowpoints.findIndex(t => t.id === item.id) === -1) {
|
||||||
|
_result.push(item);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.setState({
|
||||||
|
Knowpoints: this.state.Knowpoints,
|
||||||
|
knowledgepoints: this.state.knowledgepoints,
|
||||||
|
knowledgepoints2: _result,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}).catch((error) => {
|
||||||
|
//console.log(error);
|
||||||
|
})
|
||||||
|
|
||||||
|
this.setState({
|
||||||
|
NewknTypedel:false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
render() {
|
||||||
|
let {page, options,NewknTypedel,knowledgepoints,knowledgepoints2,Knowpoints} = this.state;
|
||||||
|
const {getFieldDecorator} = this.props.form;
|
||||||
|
const optionss = this.state.searchlist && this.state.searchlist.map(d => <Option key={d.name} value={d.name}>{d.name}</Option>);
|
||||||
|
var addonAfterthree=this.props.form&&this.props.form.getFieldValue('classroom');
|
||||||
|
var addonAfteronelens3=0;
|
||||||
|
if(addonAfterthree){
|
||||||
|
addonAfteronelens3=String(addonAfterthree).length;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
|
||||||
|
<div className=" clearfix educontent Contentquestionbankstyle w100s w1200fpx mt19">
|
||||||
|
<style>
|
||||||
|
{
|
||||||
|
`
|
||||||
|
.ant-form-item{
|
||||||
|
margin-bottom: 0px !important;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
.ant-form-explain{
|
||||||
|
padding-left:0px !important;
|
||||||
|
margin-top: 3px !important;
|
||||||
|
}
|
||||||
|
.ant-select-selection{
|
||||||
|
height: 33px !important;
|
||||||
|
}
|
||||||
|
.ant-input-group{
|
||||||
|
width:258px !important;
|
||||||
|
}
|
||||||
|
.ant-input {
|
||||||
|
height: 33px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
||||||
|
outline: 0px solid rgba(24, 144, 255, 0.06) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
`
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div className="h12"></div>
|
||||||
|
{
|
||||||
|
NewknTypedel?
|
||||||
|
<Newknledpots {...this.state} {...this.props}
|
||||||
|
NewknTypedeldel={(bool)=>this.NewknTypedeldel(bool)}
|
||||||
|
NewknTypedeltyoedel={(value)=>this.NewknTypedeltyoedel(value)}
|
||||||
|
></Newknledpots>
|
||||||
|
:""
|
||||||
|
}
|
||||||
|
|
||||||
|
<Form onSubmit={this.handleSubmit}>
|
||||||
|
|
||||||
|
<Form.Item
|
||||||
|
label="课程"
|
||||||
|
>
|
||||||
|
{getFieldDecorator("rbkc",
|
||||||
|
{
|
||||||
|
rules: [{required: true, message: '请选择课程'}],
|
||||||
|
}
|
||||||
|
)(
|
||||||
|
<div className="sortinxdirection">
|
||||||
|
<InputGroup compact>
|
||||||
|
<Cascader style={{width: '258px'}} initialValue={this.state.rbkc} options={options} onChange={this.handleFormzhishidian}
|
||||||
|
placeholder="请选择..."/>
|
||||||
|
</InputGroup>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
<Form.Item
|
||||||
|
label="知识点"
|
||||||
|
>
|
||||||
|
{getFieldDecorator("rbzsd"
|
||||||
|
)(
|
||||||
|
<div className="sortinxdirection">
|
||||||
|
<InputGroup compact>
|
||||||
|
<Select style={{width: '258px'}} initialValue={undefined} onChange={this.handleFormkechen}
|
||||||
|
placeholder="请选择...">
|
||||||
|
{knowledgepoints2 && knowledgepoints2.map((object, index) => {
|
||||||
|
return (
|
||||||
|
<Option key={object.id} value={object.id}>{object.name}</Option>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</Select>
|
||||||
|
</InputGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img className=" ml22 zjzsdian xiaoshou" src={getImageUrl("/images/educoder/zjzsd.png")} onClick={()=>this.NewknTypedeldel(true)}/>
|
||||||
|
|
||||||
|
|
||||||
|
<div className="sortinxdirection" style={{
|
||||||
|
height: "33px",
|
||||||
|
lineHeight: "28px",
|
||||||
|
|
||||||
|
}}>
|
||||||
|
|
||||||
|
{this.state.Knowpoints === undefined ? "" : this.state.Knowpoints.map((object, index) => {
|
||||||
|
return (
|
||||||
|
<div className="mytags" style={{
|
||||||
|
position: "relative",
|
||||||
|
}}>
|
||||||
|
<p className="w100s stestcen lh32">{object.name}</p>
|
||||||
|
|
||||||
|
<img className=" ml7 zjzsdian xiaoshou icondowncolorssy" onClick={() => this.deletesobject(object, index)} src={getImageUrl("/images/educoder/bzucha.png")}/>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
{
|
||||||
|
`
|
||||||
|
.ml19{
|
||||||
|
margin-left:19px;
|
||||||
|
}
|
||||||
|
`
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div className="stud-class-set ">
|
||||||
|
<style>{
|
||||||
|
`
|
||||||
|
.yslzxueshis .ant-input{
|
||||||
|
border-right: none !important;
|
||||||
|
height: 38px !important;
|
||||||
|
width: 970px !important;
|
||||||
|
}
|
||||||
|
.yslzxueshisy span .ant-input-group-addon{
|
||||||
|
width: 65px !important;
|
||||||
|
background-color: #fafafa!important;
|
||||||
|
}
|
||||||
|
.yslzxueshisy .ant-input-group-addon{
|
||||||
|
width: 65px !important;
|
||||||
|
background-color: #fafafa!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
`
|
||||||
|
}</style>
|
||||||
|
<div className="sjmc">
|
||||||
|
<Form.Item label="试卷名称:">
|
||||||
|
{getFieldDecorator('classroom', {
|
||||||
|
rules: [{required: true, message: "不能为空"}],
|
||||||
|
})(
|
||||||
|
|
||||||
|
<AutoComplete
|
||||||
|
onSearch={this.handleSearch}
|
||||||
|
className={"fl construction yslzxueshis "}
|
||||||
|
dataSource={optionss}
|
||||||
|
>
|
||||||
|
<Input className="yslzxueshisy " placeholder="例如:数据结构" onInput={this.handleChange} addonAfter={String(addonAfteronelens3)+"/60"} maxLength={60} />
|
||||||
|
</AutoComplete>
|
||||||
|
)}
|
||||||
|
<div id='isclassroom'></div>
|
||||||
|
</Form.Item>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<style>
|
||||||
|
{
|
||||||
|
`
|
||||||
|
.kssc .ant-form-item-label{
|
||||||
|
line-height: 38px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
`
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div className="kssc">
|
||||||
|
|
||||||
|
<Form.Item label="考试时长:">
|
||||||
|
{getFieldDecorator('kssc')(<InputNumber
|
||||||
|
min={0}
|
||||||
|
step={0.1}
|
||||||
|
></InputNumber>)}
|
||||||
|
<span className="ant-form-text"> 分钟</span>
|
||||||
|
</Form.Item>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<style>
|
||||||
|
{
|
||||||
|
`
|
||||||
|
.rbndclass .ant-radio-button-wrapper{
|
||||||
|
width:106px !important;
|
||||||
|
height:33px !important;
|
||||||
|
background:#EEEEEE;
|
||||||
|
border-radius:17px !important;
|
||||||
|
color:#333333;
|
||||||
|
text-align: center !important;
|
||||||
|
border:0px !important;
|
||||||
|
margin-right: 27px !important;
|
||||||
|
margin-top: 6px !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
.rbndclass .ant-radio-button-wrapper-checked {
|
||||||
|
width: 106px !important;
|
||||||
|
height: 33px !important;
|
||||||
|
background: #4CACFF !important;
|
||||||
|
border-radius: 17px !important;
|
||||||
|
text-align: center !important;
|
||||||
|
border:0px !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
margin-right: 27px !important;
|
||||||
|
margin-top: 6px!important;
|
||||||
|
|
||||||
|
}
|
||||||
|
.rbndclass .ant-radio-button-wrapper:not(:first-child)::before{
|
||||||
|
border:0px !important;
|
||||||
|
width:0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rbndclass .ant-radio-button-wrapper{
|
||||||
|
border:0px !important;
|
||||||
|
}
|
||||||
|
.rbndclass .ant-radio-group{
|
||||||
|
border:0px !important;
|
||||||
|
}
|
||||||
|
.rbndclass .ant-radio-group label{
|
||||||
|
border:0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rbndclass .ant-radio-group span{
|
||||||
|
border:0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
ant-radio-button-wrapper:focus-within {
|
||||||
|
outline: 0px solid #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
`
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div className="rbndclass">
|
||||||
|
<Form.Item label="难度">
|
||||||
|
{getFieldDecorator('rbnd',
|
||||||
|
{
|
||||||
|
rules: [{required: true, message: '请选择难度'}],
|
||||||
|
}
|
||||||
|
)(
|
||||||
|
<Radio.Group initialValue={this.state.rbnd} onChange={this.handleFormLayoutChange}>
|
||||||
|
<Radio.Button value="1">简单</Radio.Button>
|
||||||
|
<Radio.Button value="2">适中</Radio.Button>
|
||||||
|
<Radio.Button value="3">困难</Radio.Button>
|
||||||
|
</Radio.Group>,
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
</div>
|
||||||
|
</Form>
|
||||||
|
<div className="h20"></div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
const Comthetestpapersts = Form.create({name: 'Comthetestpaperst'})(Comthetestpaperst);
|
||||||
|
export default Comthetestpapersts;
|
Loading…
Reference in new issue