feat:错题列表

pg_adapter
wangxy 9 months ago
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);
}
}

@ -1,15 +1,18 @@
package com.ruoyi.web.controller.manager;
import cn.hutool.core.convert.Convert;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.ruoyi.common.utils.ShiroUtils;
import com.ruoyi.system.domain.qu.ElQu;
import com.ruoyi.system.domain.userbook.ElUserBook;
import com.ruoyi.system.domain.userbook.dto.UserBookDTO;
import com.ruoyi.system.service.ElQuService;
import com.ruoyi.system.service.ElUserBookService;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
import java.util.Objects;
/**
@ -77,5 +80,25 @@ public class UserBookManager {
}
public List<UserBookDTO> paging(UserBookDTO reqDTO) {
//查询条件
QueryWrapper<ElUserBook> wrapper = new QueryWrapper<>();
// 查找用户的错题
wrapper.lambda().eq(ElUserBook::getUserId, ShiroUtils.getUserId());
if(Objects.nonNull(reqDTO.getTitle())){
wrapper.lambda().like(ElUserBook::getTitle, reqDTO.getTitle());
}
if(Objects.nonNull(reqDTO.getExamId())){
wrapper.lambda().eq(ElUserBook::getExamId, reqDTO.getExamId());
}
List<ElUserBook> list = userBookService.list(wrapper);
return Convert.toList(UserBookDTO.class, 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>&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">
<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>

@ -34,6 +34,7 @@
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var prefix = ctx + "system/userExam";
var prefixBook = ctx + "system/userBook";
$(function() {
var options = {
uniqueId: "id",
@ -89,6 +90,16 @@
var url = prefix + '/detail/' + id +'/'+userId;
$.modal.open("考试明细", url);
}
/*资产列表-详细*/
function toBook(id) {
var url = prefixBook + '/toBook/' + id;
$.modal.openTab("考试人员", url);
}
</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…
Cancel
Save