|
|
|
@ -17,10 +17,6 @@ const tagArrays = [
|
|
|
|
|
'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
|
|
|
|
|
'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'
|
|
|
|
|
]
|
|
|
|
|
<<<<<<< HEAD
|
|
|
|
|
|
|
|
|
|
=======
|
|
|
|
|
>>>>>>> d0ddf91... 题库
|
|
|
|
|
class Listjihe extends Component {
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
@ -39,18 +35,9 @@ class Listjihe extends Component {
|
|
|
|
|
|
|
|
|
|
//选用
|
|
|
|
|
Selectingpracticaltraining = (id) => {
|
|
|
|
|
let data = {}
|
|
|
|
|
if (this.props.exam_id === undefined) {
|
|
|
|
|
data = {
|
|
|
|
|
let data = {
|
|
|
|
|
item_ids: [id]
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
data = {
|
|
|
|
|
item_ids: [id],
|
|
|
|
|
exam_id: this.props.exam_id === undefined ? "" : parseInt(this.props.exam_id),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.props.getitem_baskets(data);
|
|
|
|
|
}
|
|
|
|
|
//撤销
|
|
|
|
@ -100,22 +87,6 @@ class Listjihe extends Component {
|
|
|
|
|
MULTIPLEkey = MULTIPLEkey + tagArrays[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<<<<<<< HEAD
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
if (items.choices) {
|
|
|
|
|
if (items.choices.length > 0) {
|
|
|
|
|
var arr = items.choices;
|
|
|
|
|
for (var i = 0; i < arr.length; i++) {
|
|
|
|
|
if (arr[i].is_answer === true) {
|
|
|
|
|
rightkey = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
=======
|
|
|
|
|
// 编程答案
|
|
|
|
|
var rightkey = null
|
|
|
|
|
|
|
|
|
@ -134,7 +105,6 @@ class Listjihe extends Component {
|
|
|
|
|
if (data.is_answer === true) {
|
|
|
|
|
rightkey = data.choice_text;
|
|
|
|
|
break;
|
|
|
|
|
>>>>>>> d0ddf91... 题库
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -234,23 +204,6 @@ class Listjihe extends Component {
|
|
|
|
|
</div>
|
|
|
|
|
{/*内容*/}
|
|
|
|
|
<div className="w100s sortinxdirection ">
|
|
|
|
|
<<<<<<< HEAD
|
|
|
|
|
{items.item_type === "JUDGMENT" ?
|
|
|
|
|
<p className="w100s listjihetixingstitsp sortinxdirection ">
|
|
|
|
|
{
|
|
|
|
|
items === undefined || items === null ? "" : items.choices.map((object, index) => {
|
|
|
|
|
return (
|
|
|
|
|
<p className={index === 1 ? "sortinxdirection ml10" : "sortinxdirection "}>
|
|
|
|
|
<Radio disabled={true} >
|
|
|
|
|
{object.choice_text}
|
|
|
|
|
</Radio>
|
|
|
|
|
</p>
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</p> :
|
|
|
|
|
items.item_type === "PROGRAM" ?
|
|
|
|
|
=======
|
|
|
|
|
{items.item_type === "JUDGMENT" ?
|
|
|
|
|
<p className="w100s listjihetixingstits sortinxdirection ">
|
|
|
|
|
{
|
|
|
|
@ -266,57 +219,19 @@ class Listjihe extends Component {
|
|
|
|
|
}
|
|
|
|
|
</p> :
|
|
|
|
|
items.item_type === "PROGRAM" ?
|
|
|
|
|
>>>>>>> d0ddf91... 题库
|
|
|
|
|
<p className="w100s listjihetixingstitssy sortinxdirection ">
|
|
|
|
|
<p className={"sortinxdirection mt15"} >
|
|
|
|
|
{
|
|
|
|
|
items && items.program_attr && items.program_attr.description ?
|
|
|
|
|
<p className="programquill" style={{ wordBreak: "break-word" }}
|
|
|
|
|
>
|
|
|
|
|
<QuillForEditor
|
|
|
|
|
readOnly={true}
|
|
|
|
|
value={itemsnamesy}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</p>
|
|
|
|
|
: ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p style={{ wordBreak: "break-word" }} dangerouslySetInnerHTML={{ __html: markdownToHTML(items.program_attr.description).replace(/▁/g, "▁▁▁") }}></p>
|
|
|
|
|
</p>
|
|
|
|
|
</p>
|
|
|
|
|
:
|
|
|
|
|
<p className="w100s listjihetixingstitsp verticallayout ">
|
|
|
|
|
<p className="w100s listjihetixingstits verticallayout ">
|
|
|
|
|
{
|
|
|
|
|
items === undefined || items === null ? "" : items.choices.map((object, index) => {
|
|
|
|
|
var string = ""
|
|
|
|
|
try {
|
|
|
|
|
string = JSON.parse(object.choice_text);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
string = object.choice_text;
|
|
|
|
|
}
|
|
|
|
|
return (
|
|
|
|
|
<p className={index === 0 ? "sortinxdirection" : "sortinxdirection mt15"} >
|
|
|
|
|
<p className="lh20s">{tagArray[index]}</p>
|
|
|
|
|
<p className="programquill" style={{ wordBreak: "break-word" }}>
|
|
|
|
|
{object ?
|
|
|
|
|
object.choice_text === undefined || object.choice_text === null || object.choice_text === "" ?
|
|
|
|
|
|
|
|
|
|
""
|
|
|
|
|
:
|
|
|
|
|
object.choice_text.length > 0 ?
|
|
|
|
|
<QuillForEditor
|
|
|
|
|
readOnly={true}
|
|
|
|
|
value={string}
|
|
|
|
|
/>
|
|
|
|
|
: ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
}
|
|
|
|
|
</p>
|
|
|
|
|
{tagArray[index]}
|
|
|
|
|
<p style={{ wordBreak: "break-word" }} dangerouslySetInnerHTML={{ __html: markdownToHTML(object.choice_text).replace(/▁/g, "▁▁▁") }}></p>
|
|
|
|
|
</p>
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
@ -349,6 +264,11 @@ class Listjihe extends Component {
|
|
|
|
|
<p className="updatetimes lh30 ml45">编程语言:{items.program_attr.language}</p>
|
|
|
|
|
: ""
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
items.item_type === "PROGRAM" ?
|
|
|
|
|
<p className="updatetimes lh30 ml45">编程语言:{items.program_attr.language}</p>
|
|
|
|
|
: ""
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
items.item_type === "PROGRAM" ?
|
|
|
|
|
items.program_attr.status === 0 ?
|
|
|
|
@ -366,13 +286,10 @@ class Listjihe extends Component {
|
|
|
|
|
:
|
|
|
|
|
items.item_type === "PROGRAM" ?
|
|
|
|
|
items.program_attr.status === 0 ?
|
|
|
|
|
<Tooltip placement="top" title={"编程题未发布,不能选用!"}>
|
|
|
|
|
<p className="selectionys jinzhixiaoshou" >
|
|
|
|
|
<i className="iconfont icon-tianjiadaohang font-12 lg ml7 lh30 icontianjiadaohangcolor mr5"></i>
|
|
|
|
|
<span className="mr15 lh30">选用</span>
|
|
|
|
|
</p>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
|
:
|
|
|
|
|
<p className="selection xiaoshou" onClick={() => this.Selectingpracticaltraining(items.id)}>
|
|
|
|
|
<i className="iconfont icon-tianjiadaohang font-12 lg ml7 lh30 icontianjiadaohangcolor mr5"></i>
|
|
|
|
@ -419,22 +336,17 @@ class Listjihe extends Component {
|
|
|
|
|
items.program_attr.status === 0 ?
|
|
|
|
|
""
|
|
|
|
|
:
|
|
|
|
|
items.apply === false ?
|
|
|
|
|
<p className="viewparsings xiaoshou mr25" onClick={() => this.props.showmodels(items.id)}>
|
|
|
|
|
<i className="iconfont icon-gongkai font-17 lg ml7 lh30 icontianjiadaohangcolors mr5"></i>
|
|
|
|
|
<span>公开</span>
|
|
|
|
|
</p>
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
: items.apply === false ?
|
|
|
|
|
<p className="viewparsings xiaoshou mr25" onClick={() => this.props.showmodels(items.id)}>
|
|
|
|
|
<i className="iconfont icon-gongkai font-17 lg ml7 lh30 icontianjiadaohangcolors mr5"></i>
|
|
|
|
|
<span>公开</span>
|
|
|
|
|
</p>
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
:
|
|
|
|
|
""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@ -457,30 +369,6 @@ class Listjihe extends Component {
|
|
|
|
|
<div className="w100s questiontypeheng mt23">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<<<<<<< HEAD
|
|
|
|
|
<div className=" sortinxdirection mt15 yldxtit">
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
items.item_type === "SINGLE" ?
|
|
|
|
|
<p className=" testfondex yldxtit"
|
|
|
|
|
style={{ wordBreak: "break-word" }}
|
|
|
|
|
dangerouslySetInnerHTML={{ __html: markdownToHTML("答案:" + tagArrays[rightkey]).replace(/▁/g, "▁▁▁") }}
|
|
|
|
|
>
|
|
|
|
|
</p>
|
|
|
|
|
: items.item_type === "MULTIPLE" ?
|
|
|
|
|
<p className=" testfondex yldxtit"
|
|
|
|
|
style={{ wordBreak: "break-word" }}
|
|
|
|
|
dangerouslySetInnerHTML={{ __html: markdownToHTML("答案:" + MULTIPLEkey).replace(/▁/g, "▁▁▁") }}
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
</p>
|
|
|
|
|
:
|
|
|
|
|
<p className=" testfondex yldxtit"
|
|
|
|
|
style={{ wordBreak: "break-word" }}
|
|
|
|
|
dangerouslySetInnerHTML={{ __html: markdownToHTML("答案:" + rightkey).replace(/▁/g, "▁▁▁") }}
|
|
|
|
|
>
|
|
|
|
|
</p>
|
|
|
|
|
=======
|
|
|
|
|
<div className=" sortinxdirection mt15 yldxtit" >
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
@ -494,7 +382,6 @@ class Listjihe extends Component {
|
|
|
|
|
style={{ wordBreak: "break-word" }} dangerouslySetInnerHTML={{ __html: markdownToHTML("答案:" + rightkey).replace(/▁/g, "▁▁▁") }}
|
|
|
|
|
>
|
|
|
|
|
</p>
|
|
|
|
|
>>>>>>> d0ddf91... 题库
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|