From c28f27e7a03e9c14422ae787d412c286b6ad501c Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期三, 26 六月 2024 17:49:51 +0800
Subject: [PATCH] fix:修改时间问题
---
src/api/modules/exam.js | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/api/modules/exam.js b/src/api/modules/exam.js
index 287e89a..ce76409 100644
--- a/src/api/modules/exam.js
+++ b/src/api/modules/exam.js
@@ -1,6 +1,9 @@
import service from "@/api";
+export const getExamList = (postData = {examName: ''}) => {
+ return service.post('/api/student/exam/page',postData);
+}
-export const getExamList = () => {
- return service.get('/api/v1/getExamList');
+export const getExamInfo = (id) => {
+ return service.post('/api/student/exam/start/' + id);
}
\ No newline at end of file
--
Gitblit v1.8.0