parent
cd6421233a
commit
ee73a6a096
@ -1,102 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||
<head>
|
||||
<th:block th:include="include :: header('考试结果列表')" />
|
||||
<th:block th:include="include :: header('考试管理')" />
|
||||
</head>
|
||||
<body class="gray-bg">
|
||||
<div class="container-div">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 search-collapse">
|
||||
<form id="formId">
|
||||
<div class="select-list">
|
||||
<ul>
|
||||
<li>
|
||||
<label>考生姓名:</label>
|
||||
<input type="text" name="userName"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>单位名称:</label>
|
||||
<input type="text" name="dept"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>试题类型:</label>
|
||||
<select name="type" th:with="type=${@dict.getType('td_question_type')}">
|
||||
<option value="">所有</option>
|
||||
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
||||
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="container-div">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 search-collapse">
|
||||
<form id="notice-form">
|
||||
<div class="select-list">
|
||||
<ul>
|
||||
<li>
|
||||
搜索人员:<input type="text" name="userName"/>
|
||||
<input type="hidden" name="examId" th:value="*{examId}"/>
|
||||
</li>
|
||||
<li>
|
||||
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
||||
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="btn-group-sm" id="toolbar" role="group">
|
||||
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:examnum:export">
|
||||
<i class="fa fa-download"></i> 导出
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-12 select-table table-striped">
|
||||
<table id="bootstrap-table"></table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-group-sm" id="toolbar" role="group">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-sm-12 select-table table-striped">
|
||||
<table id="bootstrap-table"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<script th:inline="javascript">
|
||||
var editFlag = [[${@permission.hasPermi('system:examnum:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('system:examnum:remove')}]];
|
||||
var typeDatas = [[${@dict.getType('td_question_type')}]];
|
||||
var prefix = ctx + "system/examnum";
|
||||
|
||||
var prefixUser = ctx + "system/userExam";
|
||||
$(function() {
|
||||
var options = {
|
||||
uniqueId: "id",
|
||||
url: prefix + "/list",
|
||||
createUrl: prefix + "/add",
|
||||
updateUrl: prefix + "/edit/{id}",
|
||||
removeUrl: prefix + "/remove",
|
||||
exportUrl: prefix + "/export",
|
||||
modalName: "考试结果",
|
||||
columns: [{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'id',
|
||||
title: 'id',
|
||||
visible: false
|
||||
},
|
||||
{
|
||||
field: 'userName',
|
||||
title: '考试姓名'
|
||||
},
|
||||
{
|
||||
field: 'examResult',
|
||||
title: '考试分数'
|
||||
},
|
||||
{
|
||||
field: 'startTime',
|
||||
title: '开始时间'
|
||||
},
|
||||
{
|
||||
field: 'endTime',
|
||||
title: '结束时间'
|
||||
},
|
||||
{
|
||||
field: 'dept',
|
||||
title: '单位名称'
|
||||
},
|
||||
{
|
||||
field: 'type',
|
||||
title: '试题类型',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(typeDatas, value);
|
||||
}
|
||||
}]
|
||||
modalName: "考试",
|
||||
columns: [
|
||||
{
|
||||
field : 'userName',
|
||||
title : '人员'
|
||||
},
|
||||
{
|
||||
field: 'tryCount',
|
||||
title: '考试次数'
|
||||
},
|
||||
{
|
||||
field: 'maxScore',
|
||||
title: '最高分',
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
field: 'passed',
|
||||
title: '是否通过',
|
||||
formatter: function(value, row, index) {
|
||||
if(value=='1'){
|
||||
return '通过';
|
||||
}else{
|
||||
return '未通过';
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'updateTime',
|
||||
title: '最后考试时间',
|
||||
sortable: true
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-success btn-xs" href="javascript:void(0)" onclick="detail(\'' + row.examId + '\',\'' + row.userId + '\')"><i class="fa fa-search"></i>考试明细</a> ');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
|
||||
|
||||
/*资产列表-详细*/
|
||||
function detail(id,userId) {
|
||||
var url = prefixUser + '/detail/' + id +'/'+userId;
|
||||
$.modal.open("考试明细", url);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
Loading…
Reference in new issue