From 117da08d652db513d8889924ea12b13aed68fba2 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Tue, 16 Jul 2024 14:59:09 +0800
Subject: [PATCH] 提交
---
api/wearhouse.js | 40 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 40 insertions(+), 0 deletions(-)
diff --git a/api/wearhouse.js b/api/wearhouse.js
index 657aa3c..a27e41a 100644
--- a/api/wearhouse.js
+++ b/api/wearhouse.js
@@ -46,4 +46,44 @@
method: 'POST',
data
})
+}
+
+export function getErrorsIdList(data) {
+ return service({
+ url: '/api/app/question/getExerciseErrorQuestionList',
+ method: 'GET',
+ data
+ })
+}
+
+export function getExamIdIdList(data) {
+ return service({
+ url: '/api/app/question/getPaperQuestionList',
+ method: 'GET',
+ data
+ })
+}
+
+export function getExamListByIds(data) {
+ return service({
+ url: '/api/app/question/getPaperQuestionByIds',
+ method: 'GET',
+ data
+ })
+}
+
+export function postExamAnswer(data) {
+ return service({
+ url: '/api/app/student-answer',
+ method: 'POST',
+ data
+ })
+}
+
+export function postEndExam(data) {
+ return service({
+ url: '/api/app/paper-student/endExam',
+ method: 'POST',
+ data
+ })
}
\ No newline at end of file
--
Gitblit v1.9.2