From 36bcd67363842d58ade5f460f4ecf2804d7a46ba Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Mon, 06 Sep 2021 16:52:20 +0800
Subject: [PATCH] 培训考试列表修改,新增审核状态,考试申请修改,考试成绩修改,新增缺考标记

---
 src/api/examapi/performance.js |   37 +++++++++++++++++++++++--------------
 1 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/src/api/examapi/performance.js b/src/api/examapi/performance.js
index ba130f1..36582a6 100644
--- a/src/api/examapi/performance.js
+++ b/src/api/examapi/performance.js
@@ -1,21 +1,30 @@
 import request from '@/router/axios';
 
 export const getList = (current, size, params) => {
-  return request({
-    url: '/api/examScore/page',
-    method: 'get',
-    params: {
-      ...params,
-      current,
-      size
-    }
-  })
+    return request({
+        url: '/api/examScore/page',
+        method: 'get',
+        params: {
+            ...params,
+            current,
+            size
+        }
+    })
 }
 
 export const update = (row) => {
-  return request({
-    url: '/api/examScore/updateExamScore',
-    method: 'post',
-    data: row
-  })
+    return request({
+        url: '/api/examScore/updateExamScore',
+        method: 'post',
+        data: row
+    })
 }
+
+
+export const updateAbsent = (row) => {
+    return request({
+        url: '/api/examScore/updateAbsent',
+        method: 'post',
+        data: row
+    })
+}
\ No newline at end of file

--
Gitblit v1.9.3