parent
563d0b2720
commit
0984ff24f3
@ -0,0 +1,94 @@
|
|||||||
|
<!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('考试管理')" />
|
||||||
|
</head>
|
||||||
|
<body class="gray-bg">
|
||||||
|
<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="title"/>
|
||||||
|
</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">
|
||||||
|
|
||||||
|
</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 prefix = ctx + "system/userExam";
|
||||||
|
$(function() {
|
||||||
|
var options = {
|
||||||
|
uniqueId: "id",
|
||||||
|
url: prefix + "/myGrades",
|
||||||
|
modalName: "我的成绩",
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
field : 'title',
|
||||||
|
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> ');
|
||||||
|
actions.push('<a class="btn btn-warning btn-xs" href="javascript:void(0)" onclick="toBook(\'' + row.examId + '\')"><i class="fa fa-edit"></i>错题</a> ');
|
||||||
|
return actions.join('');
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
};
|
||||||
|
$.table.init(options);
|
||||||
|
});
|
||||||
|
|
||||||
|
/*资产列表-详细*/
|
||||||
|
function detail(id,userId) {
|
||||||
|
var url = prefix + '/detail/' + id +'/'+userId;
|
||||||
|
$.modal.open("考试明细", url);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue