feat:去考试

pg_adapter
wangxy 9 months ago
parent dc3c8fa7e6
commit afb66453a1

@ -0,0 +1,93 @@
<!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>
考试类型:<select name="openType" th:with="type=${@dict.getType('sys_open_type')}">
<option value="">请选择</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<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>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</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 editFlag = [[${@permission.hasPermi('system:exam:edit')}]];
var types = [[${@dict.getType('sys_open_type')}]];
var prefix = ctx + "system/onlineExam";
$(function() {
var options = {
uniqueId: "id",
url: prefix + "/list",
createUrl: prefix + "/add",
modalName: "在线考试",
columns: [{
checkbox: false
},
{
field : 'content',
title : '考试名称'
},
{
field: 'openType',
title: '考试类型',
align: 'center',
formatter: function(value, row, index) {
return $.table.selectDictLabel(types, value);
}
},
{
field: 'totalTime',
title: '考试时长',
sortable: true
},
{
field: 'totalScore',
title: '考试总分',
sortable: true
},
{
field: 'qualifyScore',
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="$.operate.editTab(\'' + row.id + '\')"><i class="fa fa-edit"></i>去考试</a> ');
return actions.join('');
}
}]
};
$.table.init(options);
});
</script>
</body>
</html>

@ -51,7 +51,7 @@
SELECT ex.* SELECT ex.*
FROM el_exam ex FROM el_exam ex
LEFT JOIN el_exam_depart dept ON ex.id=dept.exam_id AND ex.open_type=2 LEFT JOIN el_exam_depart dept ON ex.id=dept.exam_id AND ex.open_type=2
LEFT JOIN sys_user uc ON uc.dept_id=dept.depart_id LEFT JOIN ${prefix}sys_user uc ON uc.dept_id=dept.depart_id
WHERE ex.state=0 AND (ex.open_type=1 OR ex.open_type=3 OR uc.user_id=#{userId}) WHERE ex.state=0 AND (ex.open_type=1 OR ex.open_type=3 OR uc.user_id=#{userId})
<if test="title!=null and title!=''"> <if test="title!=null and title!=''">
AND ex.title LIKE CONCAT('%',#{title},'%') AND ex.title LIKE CONCAT('%',#{title},'%')

Loading…
Cancel
Save