parent
0984ff24f3
commit
325dbefbcb
@ -0,0 +1,55 @@
|
||||
package com.ruoyi.web.controller.exam;
|
||||
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.system.domain.userbook.dto.UserBookDTO;
|
||||
import com.ruoyi.web.controller.manager.UserBookManager;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* packageName com.ruoyi.web.controller.exam
|
||||
*
|
||||
* @author wangxy
|
||||
* @version JDK 8
|
||||
* @className UserBookController
|
||||
* @date 2024/7/9
|
||||
* @description 错题
|
||||
*/
|
||||
@Api("错题")
|
||||
@Controller
|
||||
@RequestMapping("/system/userBook")
|
||||
public class UserBookController extends BaseController {
|
||||
|
||||
|
||||
private String prefix = "system/elExam/userBook";
|
||||
|
||||
@Resource
|
||||
private UserBookManager userBookManager;
|
||||
|
||||
@ApiOperation("错题列表")
|
||||
@GetMapping("/toBook/{id}")
|
||||
public String toBook(@PathVariable("id") String id, ModelMap mmap) {
|
||||
mmap.put("examId", id);
|
||||
return prefix + "/book";
|
||||
}
|
||||
|
||||
|
||||
@ApiOperation("错题")
|
||||
@PostMapping("/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(UserBookDTO reqDTO) {
|
||||
startPage();
|
||||
List<UserBookDTO> list = userBookManager.paging(reqDTO);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
<!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"/>
|
||||
<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-danger" onclick="closeItem()">
|
||||
<i class="fa fa-reply-all"></i> 关闭
|
||||
</a>
|
||||
|
||||
</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/userBook";
|
||||
$(function() {
|
||||
var options = {
|
||||
uniqueId: "id",
|
||||
url: prefix + "/list",
|
||||
queryParams: queryParams,
|
||||
modalName: "考试",
|
||||
columns: [
|
||||
{
|
||||
field : 'title',
|
||||
title : '题目内容'
|
||||
},
|
||||
{
|
||||
field: 'wrongCount',
|
||||
title: '错误次数'
|
||||
},
|
||||
{
|
||||
field: 'updateTime',
|
||||
title: '更新时间',
|
||||
sortable: true
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
|
||||
function queryParams(params) {
|
||||
var search = $.table.queryParams(params);
|
||||
search.examId = [[${examId}]];
|
||||
return search;
|
||||
}
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,52 @@
|
||||
package com.ruoyi.system.domain.userbook.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 错题本请求类
|
||||
* </p>
|
||||
*
|
||||
* @author 聪明笨狗
|
||||
* @since 2020-05-27 17:56
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value="错题本", description="错题本")
|
||||
public class UserBookDTO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "ID")
|
||||
private String id;
|
||||
|
||||
@ApiModelProperty(value = "考试ID")
|
||||
private String examId;
|
||||
|
||||
@ApiModelProperty(value = "用户ID")
|
||||
private String userId;
|
||||
|
||||
@ApiModelProperty(value = "题目ID")
|
||||
private String quId;
|
||||
|
||||
@ApiModelProperty(value = "加入时间")
|
||||
private Date createTime;
|
||||
|
||||
@ApiModelProperty(value = "最近错误时间")
|
||||
private Date updateTime;
|
||||
|
||||
@ApiModelProperty(value = "错误时间")
|
||||
private Integer wrongCount;
|
||||
|
||||
@ApiModelProperty(value = "题目标题")
|
||||
private String title;
|
||||
|
||||
@ApiModelProperty(value = "错题序号")
|
||||
private Integer sort;
|
||||
|
||||
}
|
Loading…
Reference in new issue