123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746 |
- <link rel="stylesheet" href="/css/zujuan.css"/>
- <link rel="stylesheet" href="/css/component.css"/>
- <link rel="stylesheet" href="/css/all.css"/>
- <link rel="stylesheet" href="/css/circle.css"/>
- <style type="text/css">
- .hideBody {
- width: 140px;
- background-color: #fff;
- border: none;
- position: absolute;
- bottom: -51px;
- z-index: 999;
- }
- .hideBody dd {
- height: 32px;
- padding: 0px 14px;
- line-height: 32px;
- color: #555;
- }
- .borbd {
- border-bottom: 1px solid #fff;
- }
- .editmenu>li {
- float: left;
- background-color: #15ae68;
- color: #fff;
- padding: 5px 10px;
- margin-left: 3px;
- cursor: pointer;
- }
- .t.edit {
- border: 1px solid #15ae68;
- position: relative;
- }
- .lblButton3 {
- display: inline-block;
- min-width: 120px;
- height: 35px;
- line-height: 35px;
- text-align: center;
- background-color: #15ae68;
- color: #fff;
- font-weight: bold;
- }
- a:hover, a:focus {
- text-decoration: underline;
- }
- .printer:hover{color:#fff;}
- .replace-question, .replace-question1{
- padding-left: 35px;padding-right: 35px;
- margin-left:25px;
- background-color: #15ae68 !important;
- }
- .replace-question:hover,.replace-question1:hover{color: #fff !important;}
- .question-cont {
- padding: 5px 0 25px 25px;
- background-color: #fff;
- }
- .topicContent{overflow:visible !important;word-break:break-all !important;}
- .cont{margin-top:20px}
- .topicContent img{clear:both !important;}
- </style>
- <script type="text/javascript">
- function numToLetter(number) {
- var letters = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
- var result = '';
-
- number = parseInt(number);
-
- result = letters[number];
-
- return result;
- }
- function strip_tags(input, allowed) {
- // discuss at: http://phpjs.org/functions/strip_tags/
- // original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // improved by: Luke Godfrey
- // improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // input by: Pul
- // input by: Alex
- // input by: Marc Palau
- // input by: Brett Zamir (http://brett-zamir.me)
- // input by: Bobby Drake
- // input by: Evertjan Garretsen
- // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // bugfixed by: Onno Marsman
- // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // bugfixed by: Eric Nagel
- // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // bugfixed by: Tomasz Wesolowski
- // revised by: Rafał Kukawski (http://blog.kukawski.pl/)
- // example 1: strip_tags('<p>Kevin</p> <br /><b>van</b> <i>Zonneveld</i>', '<i><b>');
- // returns 1: 'Kevin <b>van</b> <i>Zonneveld</i>'
- // example 2: strip_tags('<p>Kevin <img src="someimage.png" onmouseover="someFunction()">van <i>Zonneveld</i></p>', '<p>');
- // returns 2: '<p>Kevin van Zonneveld</p>'
- // example 3: strip_tags("<a href='http://kevin.vanzonneveld.net'>Kevin van Zonneveld</a>", "<a>");
- // returns 3: "<a href='http://kevin.vanzonneveld.net'>Kevin van Zonneveld</a>"
- // example 4: strip_tags('1 < 5 5 > 1');
- // returns 4: '1 < 5 5 > 1'
- // example 5: strip_tags('1 <br/> 1');
- // returns 5: '1 1'
- // example 6: strip_tags('1 <br/> 1', '<br>');
- // returns 6: '1 <br/> 1'
- // example 7: strip_tags('1 <br/> 1', '<br><br/>');
- // returns 7: '1 <br/> 1'
- allowed = (((allowed || '') + '')
- .toLowerCase()
- .match(/<[a-z][a-z0-9]*>/g) || [])
- .join(''); // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>)
- var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi,
- commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi;
-
- // 转字符串
- if(typeof input !== 'string') {
- var input = input.toString();
- }
-
- return input.replace(commentsAndPhpTags, '')
- .replace(tags, function($0, $1) {
- return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : '';
- });
- }
- function array_unique(inputArr) {
- // discuss at: http://phpjs.org/functions/array_unique/
- // original by: Carlos R. L. Rodrigues (http://www.jsfromhell.com)
- // input by: duncan
- // input by: Brett Zamir (http://brett-zamir.me)
- // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // bugfixed by: Nate
- // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // bugfixed by: Brett Zamir (http://brett-zamir.me)
- // improved by: Michael Grier
- // note: The second argument, sort_flags is not implemented;
- // note: also should be sorted (asort?) first according to docs
- // example 1: array_unique(['Kevin','Kevin','van','Zonneveld','Kevin']);
- // returns 1: {0: 'Kevin', 2: 'van', 3: 'Zonneveld'}
- // example 2: array_unique({'a': 'green', 0: 'red', 'b': 'green', 1: 'blue', 2: 'red'});
- // returns 2: {a: 'green', 0: 'red', 1: 'blue'}
- var key = '',
- tmp_arr2 = {},
- val = '';
- var __array_search = function(needle, haystack) {
- var fkey = '';
- for (fkey in haystack) {
- if (haystack.hasOwnProperty(fkey)) {
- if ((haystack[fkey] + '') === (needle + '')) {
- return fkey;
- }
- }
- }
- return false;
- };
- for (key in inputArr) {
- if (inputArr.hasOwnProperty(key)) {
- val = inputArr[key];
- if (false === __array_search(val, tmp_arr2)) {
- tmp_arr2[key] = val;
- }
- }
- }
- return tmp_arr2;
- }
- function in_array(search, array){
- for(var i in array){
- if(array[i]==search){
- return true;
- }
- }
- return false;
- }
- function explode(delimiter, string, limit) {
- // discuss at: http://phpjs.org/functions/explode/
- // original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // example 1: explode(' ', 'Kevin van Zonneveld');
- // returns 1: {0: 'Kevin', 1: 'van', 2: 'Zonneveld'}
- if (arguments.length < 2 || typeof delimiter === 'undefined' || typeof string === 'undefined') return new Array();
- if (delimiter === '' || delimiter === false || delimiter === null) return false;
- if (typeof delimiter === 'function' || typeof delimiter === 'object' || typeof string === 'function' || typeof string ===
- 'object') {
- return {
- 0: ''
- };
- }
- if (delimiter === true) delimiter = '1';
- // Here we go...
- delimiter += '';
- string += '';
- var s = string.split(delimiter);
- if (typeof limit === 'undefined') return s;
- // Support for limit
- if (limit === 0) limit = 1;
- // Positive limit
- if (limit > 0) {
- if (limit >= s.length) return s;
- return s.slice(0, limit - 1)
- .concat([s.slice(limit - 1)
- .join(delimiter)
- ]);
- }
- // Negative limit
- if (-limit >= s.length) return [];
- s.splice(s.length + limit);
- return s;
- }
- function implode(glue, pieces) {
- // discuss at: http://phpjs.org/functions/implode/
- // original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
- // improved by: Waldo Malqui Silva
- // improved by: Itsacon (http://www.itsacon.net/)
- // bugfixed by: Brett Zamir (http://brett-zamir.me)
- // example 1: implode(' ', ['Kevin', 'van', 'Zonneveld']);
- // returns 1: 'Kevin van Zonneveld'
- // example 2: implode(' ', {first:'Kevin', last: 'van Zonneveld'});
- // returns 2: 'Kevin van Zonneveld'
- var i = '',
- retVal = '',
- tGlue = '';
- if (arguments.length === 1) {
- pieces = glue;
- glue = '';
- }
- if (typeof pieces === 'object') {
- if (Object.prototype.toString.call(pieces) === '[object Array]') {
- return pieces.join(glue);
- }
- for (i in pieces) {
- retVal += tGlue + pieces[i];
- tGlue = glue;
- }
- return retVal;
- }
- return pieces;
- }
- button = '<div class="replace" style="cursor:pointer;position:absolute;z-index:9999;right:-1px;top:-30px;width:90px;height:30px;line-height:30px;background-color:#15ae68;color:#fff;text-align:center">替换</div>';
- layerOpened = false;
- notInTopicsIds = "<?php echo $ispTopicsIds;?>";
- excludedTopicsIds = notInTopicsIds ? explode(",", notInTopicsIds) : new Array();
- alertOpened = false;
- function extractTopics(wrongTopicId, topicId, topicType, methodDifficulty, methodId, wrongTopic, layerObj, num){
- layer.load(1);
- jQuery(layerObj).find(".layui-layer-content").empty();
-
- var excludedTopicsIdsStr = implode(",", excludedTopicsIds);
-
- jQuery.post(
- "<?php echo $this->createUrl("print/ajaxgetpapertopicreplace");?>",
- {topicId:wrongTopicId, notInTopicsIds: excludedTopicsIdsStr, topicType: topicType, methodDifficulty: methodDifficulty, methodId: methodId, examId: "<?php echo $examId;?>", paperId: "<?php echo $paperId;?>", num: num},
- function(data){
- data = JSON.parse(data);
- if (data.status == 0) {
- if(layerOpened && !alertOpened){
- layer.open({
- content: data.error,
- icon: 5,
- success: function(){
- alertOpened = true;
- },
- end: function(index){
- layer.close(index);
- layer.closeAll("page");
- alertOpened = false;
- }
- });
- }
-
- layer.closeAll("loading");
- return false;
- }
-
- html = "";
- html += "<div style='padding: 15px 25px;border-width:0px;border-left-width:1px;border-style:solid;border-color:#ccc'><div style='float:left;width:80%;'>"+wrongTopic+"</div><div style='float:left;width:15%;margin-right:20px;float:right;font-size:13px;position:relative;'><a id='reselect' href='javascript:;' style='padding-left:10px !important;padding-right:10px !important;' class='btn-gre bg-hot inline-block replace-question1'>重选"+num+"道题</a></div><div style='clear:both'></div></div>";
- for(i in data){
- if(typeof(data[i].id) == "undefined")
- continue;
-
- num = excludedTopicsIds.length;
- if(!in_array(data[i].id, excludedTopicsIds))
- excludedTopicsIds[num] = data[i].id;
-
- methodsIds = "";
- if(typeof(data[i].specials) != "undefined"){
- for(j in data[i].specials){
- methodsIds += data[i].specials[j].method_name+" ";
- }
- }
- switch(data[i].difficulty){
- case 2:
- difficultyName = "中";
- break;
-
- case 3:
- difficultyName = "难";
- break;
-
- default:
- difficultyName = "易";
- break;
- }
-
- options = "";
- if(data[i].type_id == 1 && typeof(data[i].items[0].options) != "undefined"){ //单选题
- for(j in data[i].items[0].options){
- var style = "font-weight:bold;padding-right:10px;";
- if(data[i].items[0].options[j].option_correct)
- style += "color:red;";
-
- options += '<div><span style="'+style+'">'+numToLetter(j)+'.</span>'+strip_tags(data[i].items[0].options[j].option_content, "<img>")+'</div>';
- }
- }
-
- kps = "";
- for(j in data[i].kps){
- kps += data[i].kps[j].kp_name+"; ";
- }
- if(kps)
- kps = kps.substr(0, kps.length - 2);
-
- methods = "";
- for(j in data[i].specials){
- methods += data[i].specials[j].method_name+"; ";
- }
- if(methods)
- methods = methods.substr(0, methods.length - 2);
-
- html += ''+
- '<div class="choose-question" sourceTopicId="'+topicId+'" topicId="'+data[i].id+'" topicType="'+data[i].type_name+'">'+
- '<ul class="clearfix">'+
- '<li class="fl">题号:'+data[i].id+'</li>'+
- '<li class="fl">题型:'+data[i].type_name+'</li>'+
- '<li class="fl">难度:'+difficultyName+'</li>'+
- '</ul>'+
-
- '<div class="clearfix question-cont questionTitle">'+
- '<div>知识点:<span style="color:#FF6600;margin-right:10px">'+kps+'</span>'+
- '考点:<span style="color:#FF6600;">'+methods+'</span></div>'+
- '<div class="fl btn-gre bg-gray tit">试题内容</div>'+
- '<div class="fl cont">'+
- strip_tags(data[i].title, "<img>")+
- '</div>'+
- '<div class="fl cont" style="margin-left:156px">'+
- options+
- '</div>'+
- '</div>'+
- '<div style="margin-bottom:20px;background-color:#fff">'+
- '<a href="javascript:;" class="btn-gre bg-hot inline-block replace-question">替 换</a>'+
- '</div>'+
- '</div>';
- }
-
- jQuery(layerObj).find(".layui-layer-content").html(html);
- layer.closeAll("loading");
- }
- );
- }
- jQuery(document).ready(function(){
- jQuery(document).on("mouseenter", ".topicContent", function(){
- if(typeof(timeout) != "undefined"){
- clearTimeout(timeout);
- }
-
- jQuery(".topicContent, .dxtanswer").css("border-width", "0px");
- jQuery(".replace").remove();
-
- jQuery(this).css("border-style", "solid");
- jQuery(this).css("border-color", "#15ae68");
- jQuery(this).css("border-width", "1px");
- jQuery(this).css("border-bottom-width", "0px");
-
- jQuery(this).next(".dxtanswer").css("border-style", "solid");
- jQuery(this).next(".dxtanswer").css("border-color", "#15ae68");
- jQuery(this).next(".dxtanswer").css("border-width", "1px");
- jQuery(this).next(".dxtanswer").css("border-top-width", "0px");
- jQuery(this).append(button);
- });
-
- jQuery(document).on("mouseleave", ".topicContent", function(){
- if(layerOpened)
- return false;
-
- var obj = this;
- //timeout = setTimeout(function(){
- jQuery(obj).css("border-width", "0px");
- jQuery(obj).next(".dxtanswer").css("border-width", "0px");
- jQuery(obj).find(".replace").remove();
- //}, 1500);
- });
-
- jQuery(document).on("click", ".replace-question", function(){
- var obj = jQuery(this).parent().parent();
- var previousTopicId = obj.attr("sourceTopicId");
-
- var newTopicId = obj.attr("topicId");
-
- jQuery.post(
- "<?php echo $this->createUrl("print/replaceisptopicact");?>",
- {"planId": "<?php echo $planId;?>", "previousTopicId": previousTopicId, "newTopicId": newTopicId},
- function(data){
- data = JSON.parse(data);
- if(data.code == "0"){
- msg = data.msg;
- icon = 6;
- }
- else{
- msg = "因为以下原因操作失败:<br/>"+data.msg;
- icon = 5;
- }
-
- layer.open({
- content: msg,
- icon: icon,
- end: function(index){
- layer.close(index);
- if(data.code == 0){
- location.reload();
- }
- }
- });
- }
- );
- });
-
- jQuery("#check").click(function(){
- jQuery("form#setchecked").submit();
- });
-
- jQuery(document).on("mouseup", ".topicContent .replace", function(){
- if(layerOpened)
- return false;
-
- notInTopicsIds = "<?php echo $ispTopicsIds;?>";
- excludedTopicsIds = notInTopicsIds ? explode(",", notInTopicsIds) : new Array();
-
- var obj = this;
- wrongTopic = jQuery(obj).parent().parent().find("span.wrongTopic").html();
- wrongTopicId = jQuery(obj).parent().parent().find("span.wrongTopic").attr("topicId");
- topicId = jQuery(obj).parent().attr("topicId");
- wrongTopicType = jQuery(obj).parent().parent().find("span.wrongTopic").attr("topicType");
- wrongTopicMethodDifficulty = jQuery(obj).parent().parent().find("span.wrongTopic").attr("methodDifficulty");
- wrongTopicMethodId = jQuery(obj).parent().parent().find("span.wrongTopic").attr("methodId");
- examId = "<?php echo $examId;?>";
- paperId = "<?php echo $paperId;?>";
- notIncludeTopicId = null;
- num = 5;
-
- if(!layerOpened){
- layer.open({
- type: 1,
- area: ['900px', '450px'],
- title: "替换题目",
- content: " ",
- success: function(index, layerObj){
- layerOpened = true;
-
- document.onkeydown = function(){
- if (window.event && window.event.keyCode == 13){
- window.event.returnValue = false;
- }
- }
-
- extractTopics(wrongTopicId, topicId, wrongTopicType, wrongTopicMethodDifficulty, wrongTopicMethodId, wrongTopic, index, num);
-
- jQuery(document).on("mouseup", "#reselect", function(){
- extractTopics(wrongTopicId, topicId, wrongTopicType, wrongTopicMethodDifficulty, wrongTopicMethodId, wrongTopic, index, num);
- });
- },
- end: function(){
- layerOpened = false;
- jQuery(".topicContent").css("border-width", "0px");
- obj = jQuery(".topicContent");
- obj.next(".dxtanswer").css("border-width", "0px");
- jQuery(".replace").remove();
- }
- });
- }
- });
- });
- </script>
- <style type="text/css">
- td.noRecord{padding:50px 0 50px 0 !important;text-align:center !important;}
- </style>
- <div class="hdcontent mt30">
- <div class="hdcontent mb30 bgWhite clearfix">
- <input type="hidden" name="exam_id" value="" />
- <input type="hidden" name="paper_id" value="" />
- <div class="sjcontent pt80">
- <h3 class="sjtitle font24 marginNo"><?php echo $isp['plan_name']; ?></h3>
-
- <?php $sectionIndex = 1;foreach ($topicSections AS $topicType => $topicSection){if($topicSection["correct_topics_count"]){$topicIndex = 1;?>
-
- <div class="xttitle"><?php echo Char::numToZh($sectionIndex); ?>、<?php echo $topicType;?></div>
- <div class="stlist">
- <?php foreach ($topicSection["wrong_topics"] AS $wrongTopic){if(isset($topicSection["correct_topics"][$wrongTopic["id"]])){ ?>
- <div class="t dxt">
- <div class="dxtquestion">
- <?php echo $topicIndex; ?>、<span class="wrongTopic" topicId="<?php echo $wrongTopic["id"];?>" topicType="<?php echo $wrongTopic["type_id"];?>" methodId="<?php echo implode(",", $wrongTopic["methods_ids"]);?>"
- methodDifficulty="<?php echo $wrongTopic["difficulty"];?>" topicId="<?php echo $wrongTopic["id"];?>">错题题号<?php echo $wrongTopic["number"];?>
- <span style="color:#FF6600;"><?php if(isset($wrongTopic["kps"])){echo "<span style='color:#000'>知识点:</span>{$wrongTopic["kps_names_str"]}";}?>
- <?php if(isset($wrongTopic["specials"])){echo "<span style='color:#000'>考点:</span>{$wrongTopic["methods_names_str"]}";}?>
- <span style='color:#000'>题型:</span><?php echo $topicType;?></span></span>
- <br/><br/>
- <?php if(isset($topicSection["correct_topics"][$wrongTopic["id"]])){foreach($topicSection["correct_topics"][$wrongTopic["id"]] as $correctTopic){?>
- <div class="dxtquestion topicContent" topicType="<?php echo $correctTopic["type_id"];?>" methodId="<?php echo implode(",", $correctTopic["methods_ids"]);?>"
- methodDifficulty="<?php echo $correctTopic["difficulty"];?>" topicId="<?php echo $correctTopic["id"];?>"
- style="position:relative;padding-left:24px">[<?php echo $correctTopic["id"];?>]
- <span style="color:#FF6600;"><?php if(isset($correctTopic["kps"])){echo "<span style='color:#000'>知识点:</span>{$correctTopic["kps_names_str"]}";}?>
- <?php if(isset($correctTopic["specials"])){echo "<span style='color:#000'>考点:</span>{$correctTopic["methods_names_str"]}";}?>
-
- <span style='color:#000'>题型:</span><?php echo $topicType;?></span>
- <br/><br/><?php echo $correctTopic["title"];?></div>
- <ul class="dxtanswer">
- <?php if($topicType === "选择题"){?>
- <?php if(isset($correctTopic["items"][0]["options"])){foreach ($correctTopic["items"][0]["options"] AS $optionKey=>$option){ ?>
- <?php if ($option["option_correct"]){ ?>
- <li class="listType_"><font style="font-weight: bold; color: red;"><?php echo Char::numToLetter($optionKey); ?></font>、<?php echo strip_tags($option["option_content"], '<img>'); ?></li>
- <?php }else{ ?>
- <li class="listType_"><?php echo Char::numToLetter($optionKey); ?>、<?php echo strip_tags($option["option_content"], '<img>'); ?></li>
- <?php } ?>
- <?php }} ?>
- <?php }?>
- </ul>
- <?php }}?>
- </div>
- </div>
- <?php $topicIndex++;}}?>
- </div>
- <?php $sectionIndex++;}} ?>
- </div>
- </div>
- <div class="center mt30 mb30">
- <form id="setchecked" action="<?php echo $this->createUrl("print/setprinttranschecked");?>" method="post">
- <input type="hidden" name="planId" value="<?php echo $planId;?>" />
- <input type="hidden" name="classId" value="<?php echo $isp["class_id"];?>" />
- <input type="hidden" name="examId" value="<?php echo $isp["exam_id"];?>" />
- <a href="javascript:void(0)" id="check" class="lblButton3 mr100 printer" style="text-decoration:none;">检查完毕</a>
- <a href="javascript:history.go(-1)" class="lblButton3 mr100 printer" style="text-decoration:none;">返回</a>
- </form>
- </div>
- <style type="text/css">
- ul.liLetter,
- ul.liNumber {
- list-style: none;
- }
- ul.liLetter li {
- list-style-type: upper-latin;
- list-style-position: inside;
- float: left;
- }
- ul.liLetter li.listType_0 {
- width: 99%;
- }
- ul.liLetter li.listType_1 {
- width: 24%;
- }
- ul.liLetter li.listType_2 {
- width: 49%;
- }
- ul.liNumber li {
- list-style-type: decimal;
- list-style-position: inside;
- }
- ul.liLetter p,
- ul.liNumber p {
- display: inline;
- }
- </style>
- <div class="popstjc">
- <div class="pctitle">试题纠错</div>
- <div class="pccontent">
- <p>题目编号:995998</p>
- <p><i class="pcmi">*</i>错题类型:<label class="inlineblock mr10"><input type="checkbox"/>题干有误</label><label class="inlineblock mr10"><input type="checkbox"/>答案有误</label><label class="inlineblock mr10"><input type="checkbox"/>解析有误</label></p>
- <div class="clearfix">
- <span class="pccwms">错误描述:</span>
- <div class="pcmsinput">
- <textarea></textarea>
- <div class="clearfix">
- <span class="fl">字0~500</span>
- <span class="fr lblButton5">确定</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="popti" id="difficultyReplace">
- <i class="popClose">×</i>
- <div class="ctlist">
- <div class="fttitle">
- <label class="mr30">题号:<span class="topicId"></span></label>
- <label class="mr25">题型:<span class="topicTypeName"></span></label>
- <label class="mr25">难度:<span class="topicDifficultyName"></span></label>
- <label class="mr50">来源:<span class="topicSource"></span></label>
- </div>
- <div class="ftmake clearfix">
- <div class="topicMethods" style="float: left; width: 880px; min-height: 35px;">
-
- </div>
- <!--<a href="javascript:void(0)" class="topicViedo button2 fr ml10" >解析视频</a>-->
- </div>
- <div class="bgdcontent">
- <div class="bgdlist clearfix">
- <div class="fl bgdListLeft">题目</div>
- <div class="bgdListRight topicTitle"></div>
- </div>
- <div class="bgdlist clearfix">
- <div class="fl bgdListLeft">正确答案</div>
- <div class="bgdListRight topicAnswer"></div>
- </div>
- <div class="bgdlist clearfix">
- <div class="fl bgdListLeft">试题解析</div>
- <div class="bgdListRight topicParse"></div>
- </div>
- <div class="bgdlist center">
- <a href="javascript:void(0)" class="save lblButton3">确定</a>
- <a href="javascript:void(0)" class="changeAgin lblButtonLink inlineblock ml30">再换一道题</a>
- </div>
- </div>
- </div>
- </div>
- <div class="popti" id="answer">
- <i class="popClose">×</i>
- <div class="ctlist">
- <div class="fttitle">
- <label class="mr30">题号:<span class="topicId"></span></label>
- <label class="mr25">题型:<span class="topicTypeName"></span></label>
- <label class="mr25">难度:<span class="topicDifficultyName"></span></label>
- <label class="mr50">来源:<span class="topicSource"></span></label>
- </div>
- <div class="ftmake clearfix">
- <div class="topicMethods" style="float: left; width: 880px; min-height: 35px;">
-
- </div>
- <a href="javascript:void(0)" class="topicViedo button2 fr ml10">解析视频</a>
- </div>
- <div class="bgdcontent">
- <div class="bgdlist clearfix">
- <div class="fl bgdListLeft">题目</div>
- <div class="bgdListRight topicTitle"></div>
- </div>
- <div class="bgdlist clearfix">
- <div class="fl bgdListLeft">正确答案</div>
- <div class="bgdListRight topicAnswer"></div>
- </div>
- <div class="bgdlist clearfix">
- <div class="fl bgdListLeft">试题解析</div>
- <div class="bgdListRight topicParse"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="popti" id="params"></div>
- <div class="popti" id="findReplace">
- <div class="fttitle clearfix">
- <a href="javascript:void(0)" class="getAgin button2 mr50 fr">再来 <span class="topicNum">1</span> 题</a>
- <!--<div class="fl mt10">
- <label class="mr25">题型:<span class="topicTypeName"></span></label>
- <label class="mr25">难度:<span class="topicDifficultyName"></span></label>
- <input type="hidden" id="topicDifficulty" value=""/>
- </div>
- <div class="fl zjbarRight">
- <span id="zjjian" class="zjjian">-</span>
- <span class="zjvalue topicDifficultyValue"></span>
- <span class="zjjia">+</span>
- </div>-->
- </div>
- <div class="topicList">
-
- </div>
- <div class="bgdlist center">
- <a href="javascript:void(0)" class="save lblButton3">替换</a>
- </div>
- </div>
- <style type="text/css">
- .dialogVideo{
- background-color: #efeff4;
- border-radius: 5px;
- display: none;
- height: 560px;
- overflow: hidden;
- width: 580px;
- }
- .dialogVideo .datitle{
- background-color: #1b1d25;
- color: #fff;
- line-height: 60px;
- position: relative;
- text-indent: 20px;
- }
- .dialogVideo .datitle .iconDaClose{
- background-position: -156px 0;
- cursor: pointer;
- height: 37px;
- position: absolute;
- right: 12px;
- top: 11px;
- width: 36px;
- }
- .dialogVideo .daVideoContent{
- height: 365px;
- }
- </style>
- <div class="dialogVideo bgWhite" id="dialogVideo">
- <div class="datitle">解析视频<i class="icon iconDaClose"></i></div>
- <div class="daVideoContent">
- <video src="" allowFullScreen="true" controls="true" width="100%" height="" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash"></video>
- </div>
- </div>
- </div>
- <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse" style="background: #15ae68 none repeat scroll 0 0;border: 1px solid #15ae68;border-radius: 4px;bottom: 5%;font-size: 20px;height: 40px;line-height: 27px;position: fixed;right:1.5%;width: 40px;">
- <i class="ace-icon fa fa-angle-double-up icon-only bigger-110"></i>
- </a>
|