From fc0c0f84305c45a60d3d3a254099ca1846bdb818 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Tue, 04 Jan 2022 15:43:04 +0800
Subject: [PATCH] 保安员派遣情况统计修改为保安员年龄分布情况统计
---
src/api/examapi/modifiedGrades.js | 44 ++++++++++++++++++++++++++++++--------------
1 files changed, 30 insertions(+), 14 deletions(-)
diff --git a/src/api/examapi/modifiedGrades.js b/src/api/examapi/modifiedGrades.js
index 5737b8d..fadc1e4 100644
--- a/src/api/examapi/modifiedGrades.js
+++ b/src/api/examapi/modifiedGrades.js
@@ -1,21 +1,37 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
- return request({
- url: '/api/scoreAuditRecords/page',
- method: 'get',
- params: {
- ...params,
- current,
- size
- }
- })
+ return request({
+ url: '/api/scoreAuditRecords/page',
+ method: 'get',
+ params: {
+ ...params,
+ current,
+ size
+ }
+ })
}
export const update = (row) => {
- return request({
- url: '/api/scoreAuditRecords/update',
- method: 'post',
- data: row
- })
+ return request({
+ url: '/api/scoreAuditRecords/update',
+ method: 'post',
+ data: row
+ })
}
+
+export const applyAudit = (row) => {
+ return request({
+ url: '/api/scoreAuditRecords/applyAudit',
+ method: 'post',
+ data: row
+ })
+}
+
+export const batchAudit = (row) => {
+ return request({
+ url: '/api/scoreAuditRecords/batchAudit',
+ method: 'post',
+ data: row
+ })
+}
\ No newline at end of file
--
Gitblit v1.9.3