|
@@ -65,9 +65,9 @@
|
|
|
<input type="text" name="secretNumber" id="secretNumber" value="${query.secretNumber}" class="input-medium"/>
|
|
|
|
|
|
<label>总分:从</label>
|
|
|
- <input type="number" id="startScroe" name="startScroe" value="${query.startScroe}" class="input-mini"/>
|
|
|
+ <input type="number" id="startScore" name="startScore" value="${query.startScore}" class="input-mini"/>
|
|
|
<label> 到 </label>
|
|
|
- <input type="number" id="endScroe" name="endScroe" value="${query.endScroe}" class="input-mini"/>
|
|
|
+ <input type="number" id="endScore" name="endScore" value="${query.endScore}" class="input-mini"/>
|
|
|
|
|
|
<label>小题得分</label>
|
|
|
<input type="text" number="true" name="questionScore" id="questionScore" value="${query.questionScore }" class="input-mini"/>
|
|
@@ -75,7 +75,8 @@
|
|
|
<input id="btnSubmit" class="btn btn-primary" type="button" value="查询" onclick="goSearch()"/>
|
|
|
|
|
|
<c:if test="${examType!='MULTI_MEDIA' && inspectedCount!=null}">
|
|
|
- <a target="_blank" href="${ctx}/web/admin/exam/library/inspected/start?subjectCode=${query.subjectCode}&groupNumber=${query.groupNumber}" class="btn">待复核:${inspectedCount }</a>
|
|
|
+ <a target="_blank" href="${ctx}/web/admin/exam/library/inspected/start?subjectCode=${query.subjectCode}&groupNumber=${query.groupNumber}&markerId=${query.markerId}&examNumber=${query.examNumber}&secretNumber=${query.secretNumber}&startScore=${query.startScore}&endScore=${query.endScore}&questionScore=${query.questionScore}"
|
|
|
+ class="btn">待复核:${inspectedCount }</a>
|
|
|
</c:if>
|
|
|
</div>
|
|
|
</form>
|
|
@@ -221,22 +222,22 @@
|
|
|
}
|
|
|
|
|
|
function goSearch() {
|
|
|
- var startScroe = $("#startScroe").val();
|
|
|
- var endScore = $("#endScroe").val();
|
|
|
- if (startScroe.length > 0) {
|
|
|
+ var startScore = $("#startScore").val();
|
|
|
+ var endScore = $("#endScore").val();
|
|
|
+ if (startScore.length > 0) {
|
|
|
if (endScore.length == 0) {
|
|
|
alert("请输入结束分数值!");
|
|
|
return false;
|
|
|
}
|
|
|
}
|
|
|
if (endScore.length > 0) {
|
|
|
- if (startScroe.length == 0) {
|
|
|
+ if (startScore.length == 0) {
|
|
|
alert("请输入开始分数值!");
|
|
|
return false;
|
|
|
}
|
|
|
}
|
|
|
- if (endScore.length > 0 && startScroe.length > 0) {
|
|
|
- if (parseInt(startScroe) > parseInt(endScore)) {
|
|
|
+ if (endScore.length > 0 && startScore.length > 0) {
|
|
|
+ if (parseInt(startScore) > parseInt(endScore)) {
|
|
|
alert("开始分值必须小于结束分值");
|
|
|
return false;
|
|
|
}
|