From 572135d41eb6d26aecce24bf7c2d0adb6bc7d0e4 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期一, 15 七月 2024 14:21:49 +0800
Subject: [PATCH] feat:统计图片下载
---
src/api/examPaper.js | 17 +++++++++++++++--
1 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/src/api/examPaper.js b/src/api/examPaper.js
index 58a62ef..8bd4e30 100644
--- a/src/api/examPaper.js
+++ b/src/api/examPaper.js
@@ -1,9 +1,22 @@
-import { post } from '@/utils/request'
+import { get, post,down } from '@/utils/request'
export default {
pageList: query => post('/api/admin/exam/paper/page', query),
taskExamPage: query => post('/api/admin/exam/paper/taskExamPage', query),
edit: query => post('/api/admin/exam/paper/edit', query),
+ missExam: query => post('/api/admin/exam/paper/missExam', query),
+ missExamByTemplateId: query => post('/api/admin/exam/paper/missExamByTemplateId', query),
select: id => post('/api/admin/exam/paper/select/' + id),
- deletePaper: id => post('/api/admin/exam/paper/delete/' + id)
+ deletePaper: id => post('/api/admin/exam/paper/delete/' + id),
+ pageselfList: query => post('/api/admin/exam/templates/list', query),
+ selfedit: query => post('/api/admin/exam/templates/edit', query),
+ selfselect: query => post('/api/admin/exam/templates/select/'+ query),
+ selfdeletePaper: id => post('/api/admin/exam/templates/remove/' + id),
+ selflist: query => post('/api/admin/education/subject/list', query),
+ selfPaList: query => post('/api/admin/exam/count/list', query),
+ mathList: query => post('/api/admin/exam/count/sourceList', query),
+ uploadEnrolmentsa: query => down('/api/admin/exam/count/exportTemplatesSheet/'+query),
+ selectStudent: query => post('/api/admin/exam/paper/selectStudent', query),
+ getConfig: query => get('/api/admin/exam/templates/getConfig'),
+ setConfig: query => post('/api/admin/exam/templates/setConfig', query),
}
--
Gitblit v1.8.0