diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/UserBookController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/UserBookController.java index 4d40e14..9c6376a 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/UserBookController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/exam/UserBookController.java @@ -72,10 +72,9 @@ public class UserBookController extends BaseController { @ApiOperation("错题训练") - @GetMapping("/toTrain/{examId}/{quId}") - public String toTrain(@PathVariable("examId") String examId,@PathVariable("quId") String quId, ModelMap mmap) { + @GetMapping("/toTrain/{examId}") + public String toTrain(@PathVariable("examId") String examId, ModelMap mmap) { mmap.put("examId", examId); - mmap.put("quId", quId); return prefix + "/toTrain"; } diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/qu/add.html b/ruoyi-admin/src/main/resources/templates/system/elExam/qu/add.html index 3d72caf..61f7a86 100644 --- a/ruoyi-admin/src/main/resources/templates/system/elExam/qu/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/qu/add.html @@ -52,6 +52,9 @@ + + +
diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/qu/edit.html b/ruoyi-admin/src/main/resources/templates/system/elExam/qu/edit.html index 08f0fef..e52ea20 100644 --- a/ruoyi-admin/src/main/resources/templates/system/elExam/qu/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/qu/edit.html @@ -51,6 +51,9 @@ + + +
diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/book.html b/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/book.html index acca53a..b8135ce 100644 --- a/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/book.html +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/book.html @@ -2,9 +2,10 @@ + -
+
@@ -24,10 +25,12 @@
- - 关闭 - - + + 返回 + + + 错题训练 +
@@ -36,6 +39,7 @@
+ diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/toTrain.html b/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/toTrain.html new file mode 100644 index 0000000..628b742 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/toTrain.html @@ -0,0 +1,189 @@ + + + + + + + + +
+
+ + + +
+ +

【{{ quData.quTypeData | quTypeFilter }}】{{ quData.content }}

+

+ +

+ +
+ + + {{ an.abc }}.{{ an.content }} +
+ +
+
+
+
+ + +
+ + + {{ an.abc }}.{{ an.content }} +
+ +
+
+
+
+ +
+ 正确答案:{{ rightTags.join(' ') }} +
+ +
+ +
+ + + 整题解析: +

{{ quData.analysis }}

+

暂无解析内容!

+
+ + + 选项解析: +
+

{{ an.content }}:

+

{{ an.analysis }}

+
+

暂无选项解析

+ +
+ +
+ 继续下一题 + 返回 +
+ +
+
+ + + + + diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/view.html b/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/view.html new file mode 100644 index 0000000..63841b8 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/userBook/view.html @@ -0,0 +1,122 @@ + + + + + + + + +
+
+ + + +
+ +

【{{ quData.quType===1?'单选题':'多选题' }}】{{ quData.content }}

+

+ +

+
+ + {{ an.content }} + +
+ + +
+ + {{ an.content }} + +
+ +
+ +
+ + + 整题解析: +

{{ quData.analysis }}

+

暂无解析内容!

+
+ + + 选项解析: +
+

{{ an.content }}:

+

{{ an.analysis }}

+
+

暂无选项解析

+ +
+ + 返回 + +
+
+ + + + + diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/myGrades.html b/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/myGrades.html index 3719146..1d12473 100644 --- a/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/myGrades.html +++ b/ruoyi-admin/src/main/resources/templates/system/elExam/userExam/myGrades.html @@ -95,7 +95,7 @@ /*资产列表-详细*/ function toBook(id) { var url = prefixBook + '/toBook/' + id; - $.modal.openTab("考试人员", url); + $.modal.openTab("考试错题", url); }