Examination_system/Examination_system-1/.svn/pristine/86/86661ad470af89ae7d1acc1bbe1...

79 lines
3.5 KiB
Plaintext

<%@page import="com.bonus.core.DateTimeHelper"%>
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html >
<html lang="en">
<meta name="renderer" content="webkit">
<head>
<%@include file="../baseset.jsp" %>
<%@include file="../systemset.jsp" %>
</head>
<style type="text/css">
.widget-toolbar a{
vertical-align:middle;
}
</style>
<body>
<div class="page-content" >
<div class="row-fluid">
<div class="col-xs-12">
<table id="baseTable" class="table table-striped table-bordered table-hover" >
<thead>
<tr>
<th style="width:2%" class="center hidden-480">序号</th>
<th style="width:4%" class="center hidden-480">题型</th>
<th style="width:16%" class="center">题目</th>
<th style="width:7%" class="center hidden-480">选择项</th>
<th style="width:7%" class="center">正确答案</th>
<th style="width:7%" class="center">所做答案</th>
<th style="width:3%" class="center">得分</th>
</tr>
<tbody>
<c:forEach items="${totalList}" varStatus="i" var="item">
<tr class="text-c">
<td valign="middle" class="center">${i.index + 1}</td>
<c:if test="${item.classification eq 1}"><td valign="middle" class="center">单选题</td></c:if>
<c:if test="${item.classification eq 2}"><td valign="middle" class="center">多选题</td></c:if>
<c:if test="${item.classification eq 3}"><td valign="middle" class="center">判断题</td></c:if>
<c:if test="${item.classification eq 4}"><td valign="middle" class="center">填空题</td></c:if>
<c:if test="${item.classification eq 5}"><td valign="middle" class="center">简答题</td></c:if>
<c:if test="${item.classification eq 6}"><td valign="middle" class="center">案例题</td></c:if>
<td valign="middle" class="center">${item.content}</td>
<td valign="middle" class="center">${item.operation}</td>
<td valign="middle" class="center">
<c:if test="${item.classification eq 1}">${item.trueAnswer}</c:if>
<c:if test="${item.classification eq 2}">${item.trueAnswer}</c:if>
<c:if test="${item.classification eq 3}">${item.trueAnswer}</c:if>
<c:if test="${item.classification eq 4}">${item.trueAnswer}</c:if>
<c:if test="${item.classification eq 5}">${item.standardAnswer}</c:if>
<c:if test="${item.classification eq 6}">${item.standardAnswer}</c:if>
</td>
<td valign="middle" class="center">${item.answer}</td>
<td valign="middle" class="center">${item.questionGrade}</td>
</tr>
</c:forEach>
</tbody>
</thead>
<tbody></tbody>
</table>
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-9">
<!--设置分页位置-->
<div id="pageing" class="dataTables_paginate paging_bootstrap">
<ul class="pagination"></ul>
</div>
</div>
</div>
<!-- #dialog-confirm -->
<%@include file="../dialog.jsp" %>
</div>
</div>
</div>
<script type="text/javascript">
</script>
</body>
</html>