From 9be922fe162dae869f1332d5395b9fc8e553e232 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Fri, 5 Jul 2024 10:27:58 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E4=BF=AE=E6=94=B9=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E9=9A=8F=E6=9C=BA=E9=A2=98=E5=BA=93sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ruoyi/web/controller/exam/PaperController.java | 11 +++++++++++ .../templates/system/elExam/paper/paper.html | 10 ++++++++++ 2 files changed, 21 insertions(+) create mode 100644 ruoyi-admin/src/main/resources/templates/system/elExam/paper/paper.html diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/PaperController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/PaperController.java index 0014a3e..896244a 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/PaperController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/PaperController.java @@ -10,11 +10,13 @@ import com.ruoyi.system.domain.paper.dto.request.PaperAnswerDTO; import com.ruoyi.system.domain.paper.dto.request.PaperListReqDTO; import com.ruoyi.system.domain.paper.dto.request.PaperQuQueryDTO; import com.ruoyi.system.domain.paper.dto.response.PaperListRespDTO; +import com.ruoyi.system.domain.repo.ElRepo; import com.ruoyi.web.controller.manager.PaperManager; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; @@ -35,11 +37,20 @@ import java.util.List; @RequestMapping("/system/paper") public class PaperController extends BaseController { + private String prefix = "system/elExam/paper"; + @Resource private PaperManager paperManager; + @ApiOperation("去考试") + @GetMapping("/toPaper/{examId}") + public String toPaper(@PathVariable("examId") String examId, ModelMap mmap) { + mmap.put("examId", examId); + return prefix + "/paper"; + } + @ApiOperation("在线考试") @PostMapping("/list") @ResponseBody diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/paper/paper.html b/ruoyi-admin/src/main/resources/templates/system/elExam/paper/paper.html new file mode 100644 index 0000000..566549b --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/paper/paper.html @@ -0,0 +1,10 @@ + + +
+ +