dev_jupyter
杨树林 5 years ago
parent cb81255694
commit c0bfc28f02

@ -882,7 +882,6 @@ class Question extends Component {
/> />
{/*头部*/} {/*头部*/}
<Contentpart {...this.state} {...this.props} <Contentpart {...this.state} {...this.props}
getitem_basketss={(id)=>this.getitem_basketss(id)} getitem_basketss={(id)=>this.getitem_basketss(id)}
selectallquestionsonthispage={()=>this.selectallquestionsonthispage()} selectallquestionsonthispage={()=>this.selectallquestionsonthispage()}
getitem_baskets={(e)=>this.getitem_baskets(e)} getitem_baskets={(e)=>this.getitem_baskets(e)}

@ -309,7 +309,7 @@ class ChoquesEditor extends Component{
{/* 点击设置答案 */} {/* 点击设置答案 */}
{/* TODO 加了tooltip后会丢失掉span的class */} {/* TODO 加了tooltip后会丢失掉span的class */}
{/* <Tooltip title={standard_answers[index] ? '点击取消标准答案设置' : '点击设置为标准答案'}> */} {/* <Tooltip title={standard_answers[index] ? '点击取消标准答案设置' : '点击设置为标准答案'}> */}
<span class={`option-item fr mr10 color-grey select-choice ${bg} `} <span className={`option-item fr mr10 color-grey select-choice ${bg} `}
name="option_span" onClick={() => this.onOptionClick(index)} style={{flex: '0 0 38px'}}> name="option_span" onClick={() => this.onOptionClick(index)} style={{flex: '0 0 38px'}}>
<ConditionToolTip title={standard_answers[index] ? '点击取消标准答案设置' : '点击设置为标准答案'} placement="left" condition={true}> <ConditionToolTip title={standard_answers[index] ? '点击取消标准答案设置' : '点击设置为标准答案'} placement="left" condition={true}>
<div style={{width: '100%', height: '100%'}}>{tagArray[index]}</div> <div style={{width: '100%', height: '100%'}}>{tagArray[index]}</div>

@ -176,7 +176,8 @@ class Contentpart extends Component {
{ {
defaultActiveKey===0||defaultActiveKey==="0"? defaultActiveKey===0||defaultActiveKey==="0"?
<Search <Search
style={{ width: "347px",marginRight:"30px"}} style={{ marginRight:"30px"}}
className={"xaxisreverseorder searchwidth"}
placeholder="请输入题目名称、内容" placeholder="请输入题目名称、内容"
enterButton enterButton
size="large" size="large"
@ -184,7 +185,7 @@ class Contentpart extends Component {
onSearch={ (value)=>this.props.setdatafuns(value)} /> onSearch={ (value)=>this.props.setdatafuns(value)} />
: :
<Search <Search
style={{ width: "347px"}} className={"xaxisreverseorder searchwidth"}
placeholder="请输入题目名称、内容" placeholder="请输入题目名称、内容"
enterButton enterButton
size="large" size="large"

@ -519,31 +519,28 @@ class Itembankstop extends Component {
} }
<Form onSubmit={this.handleSubmit}> <Form onSubmit={this.handleSubmit}>
<div className="sortinxdirection">
<Form.Item <Form.Item
label="课程" label="课程"
> >
{getFieldDecorator("rbkc", {getFieldDecorator("rbkc",
{ {initialValue: this.state.rbkc,
rules: [{required: true, message: '请选择课程'}], rules: [{required: true, message: '请选择课程'}],
} }
)( )(
<div className="sortinxdirection">
<InputGroup > <Cascader style={{width: '270px'}} options={options} onChange={this.handleFormzhishidian}
<Cascader style={{width: '270px'}} value={this.state.rbkc} options={options} onChange={this.handleFormzhishidian}
placeholder="请选择..."/> placeholder="请选择..."/>
</InputGroup>
</div>
)} )}
</Form.Item> </Form.Item>
</div>
<Form.Item <Form.Item
label="知识点" label="知识点"
> >
{getFieldDecorator("rbzsd" {getFieldDecorator("rbzsd"
)( )(
<div className="sortinxdirection"> <div className="sortinxdirection">
<InputGroup >
<Select style={{width: '270px'}} value={undefined} onChange={this.handleFormkechen} <Select style={{width: '270px'}} value={undefined} onChange={this.handleFormkechen}
placeholder="请选择..."> placeholder="请选择...">
{knowledgepoints2 && knowledgepoints2.map((object, index) => { {knowledgepoints2 && knowledgepoints2.map((object, index) => {
@ -552,11 +549,10 @@ class Itembankstop extends Component {
) )
})} })}
</Select> </Select>
</InputGroup>
<img className=" ml22 zjzsdian xiaoshou" src={getImageUrl("/images/educoder/zjzsd.png")} onClick={()=>this.NewknTypedeldel(true)}/> <img className=" ml22 zjzsdian xiaoshou" src={getImageUrl("images/educoder/zjzsd.png")} onClick={()=>this.NewknTypedeldel(true)}/>
<div className="sortinxdirection" style={{ <div className="sortinxdirection" style={{
@ -572,7 +568,7 @@ class Itembankstop extends Component {
}}> }}>
<p className="w100s stestcen lh32">{object.name}</p> <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")}/> <img className=" ml7 zjzsdian xiaoshou icondowncolorssy" onClick={() => this.deletesobject(object, index)} src={getImageUrl("images/educoder/bzucha.png")}/>
</div> </div>
) )
@ -590,19 +586,18 @@ class Itembankstop extends Component {
label="题型" label="题型"
> >
{getFieldDecorator("rbtx", {getFieldDecorator("rbtx",
{ {initialValue: this.state.rbtx,
rules: [{required: true, message: '请选择题型'}], rules: [{required: true, message: '请选择题型'}],
} }
)( )(
<InputGroup > <Select style={{width: '270px'}} onChange={this.handleFormtixing}
<Select style={{width: '270px'}} value={this.state.rbtx} onChange={this.handleFormtixing}
placeholder="请选择..."> placeholder="请选择...">
<Option value="PROGRAM">编程题</Option>
<Option value="SINGLE">单选题</Option> <Option value="SINGLE">单选题</Option>
<Option value="MULTIPLE">多选题</Option> <Option value="MULTIPLE">多选题</Option>
<Option value="JUDGMENT">判断题</Option> <Option value="JUDGMENT">判断题</Option>
<Option value="PROGRAM">编程题</Option>
</Select> </Select>
</InputGroup>
)} )}
</Form.Item> </Form.Item>
@ -663,11 +658,11 @@ class Itembankstop extends Component {
<div className="rbndclass"> <div className="rbndclass">
<Form.Item label="难度"> <Form.Item label="难度">
{getFieldDecorator('rbnd', {getFieldDecorator('rbnd',
{ {initialValue: this.state.rbnd,
rules: [{required: true, message: '请选择难度'}], rules: [{required: true, message: '请选择难度'}],
} }
)( )(
<Radio.Group initialValue={this.state.rbnd} onChange={this.handleFormLayoutChange}> <Radio.Group onChange={this.handleFormLayoutChange}>
<Radio.Button value="1">简单</Radio.Button> <Radio.Button value="1">简单</Radio.Button>
<Radio.Button value="2">适中</Radio.Button> <Radio.Button value="2">适中</Radio.Button>
<Radio.Button value="3">困难</Radio.Button> <Radio.Button value="3">困难</Radio.Button>

@ -393,7 +393,23 @@ class Comthetestpapers extends Component {
.ant-select-selection{ .ant-select-selection{
height: 33px !important; height: 33px !important;
} }
.ant-input-group{ .kechen .ant-input-group{
width:258px !important;
}
.zsdd .ant-input-group{
width:258px !important;
}
.sjmc .ant-input-group{
width:258px !important;
}
.kssc .ant-input-group{
width:258px !important;
}
.rbndclass .ant-input-group{
width:258px !important; width:258px !important;
} }
.ant-input { .ant-input {

@ -575,7 +575,23 @@ class Comthetestpaperst extends Component {
.ant-select-selection{ .ant-select-selection{
height: 33px !important; height: 33px !important;
} }
.ant-input-group{ .kechen .ant-input-group{
width:258px !important;
}
.zsdd .ant-input-group{
width:258px !important;
}
.sjmc .ant-input-group{
width:258px !important;
}
.kssc .ant-input-group{
width:258px !important;
}
.rbndclass .ant-input-group{
width:258px !important; width:258px !important;
} }
.ant-input { .ant-input {
@ -600,24 +616,24 @@ class Comthetestpaperst extends Component {
} }
<Form onSubmit={this.handleSubmit}> <Form onSubmit={this.handleSubmit}>
<div className="kechen">
<div className="sortinxdirection">
<Form.Item <Form.Item
label="课程" label="课程"
> >
{getFieldDecorator("rbkc", {getFieldDecorator("rbkc"
{ ,
{initialValue: this.state.rbkc,
rules: [{required: true, message: '请选择课程'}], rules: [{required: true, message: '请选择课程'}],
} }
)( )(
<div className="sortinxdirection"> <Cascader style={{width: '258px'}} options={options} onChange={this.handleFormzhishidian}
<InputGroup compact>
<Cascader style={{width: '258px'}} value={this.state.rbkc} options={options} onChange={this.handleFormzhishidian}
placeholder="请选择..."/> placeholder="请选择..."/>
</InputGroup>
</div>
)} )}
</Form.Item> </Form.Item>
</div>
</div>
<div className="zsdd">
<Form.Item <Form.Item
label="知识点" label="知识点"
> >
@ -666,7 +682,7 @@ class Comthetestpaperst extends Component {
</div> </div>
)} )}
</Form.Item> </Form.Item>
</div>
<style> <style>
{ {
` `
@ -791,12 +807,13 @@ class Comthetestpaperst extends Component {
</style> </style>
<div className="rbndclass"> <div className="rbndclass">
<Form.Item label="难度"> <Form.Item label="难度">
{getFieldDecorator('rbnd', {getFieldDecorator('rbnd'
{ ,
{initialValue: this.state.rbnd,
rules: [{required: true, message: '请选择难度'}], rules: [{required: true, message: '请选择难度'}],
} }
)( )(
<Radio.Group initialValue={this.state.rbnd} onChange={this.handleFormLayoutChange}> <Radio.Group onChange={this.handleFormLayoutChange}>
<Radio.Button value="1">简单</Radio.Button> <Radio.Button value="1">简单</Radio.Button>
<Radio.Button value="2">适中</Radio.Button> <Radio.Button value="2">适中</Radio.Button>
<Radio.Button value="3">困难</Radio.Button> <Radio.Button value="3">困难</Radio.Button>

@ -928,7 +928,6 @@
height: 100%; height: 100%;
overflow-y: scroll !important; overflow-y: scroll !important;
width: 100%; width: 100%;
margin-top: 60px !important;
position: fixed; position: fixed;
top:0px; top:0px;
bottom: 0px; bottom: 0px;
@ -936,3 +935,7 @@
z-index: 999999; z-index: 999999;
right: 0px; right: 0px;
} }
.searchwidth{
width: 347px !important;
}

Loading…
Cancel
Save