From 38689d912f3f483f63e794ec56edbccd0cdb0cb9 Mon Sep 17 00:00:00 2001
From: 15179599649 <zhangyiyao89@qq.com>
Date: Wed, 10 Jan 2024 16:29:10 +0800
Subject: [PATCH] '查缺补漏'
---
src/api/hfiveget/index.js | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/api/hfiveget/index.js b/src/api/hfiveget/index.js
index 9438805..89bda53 100644
--- a/src/api/hfiveget/index.js
+++ b/src/api/hfiveget/index.js
@@ -125,6 +125,17 @@
},
});
};
+// 获取候选人列表数据
+export const eCategoryCandidate = (params) => {
+ return request({
+ url: '/api/evaluate/evaluateTaskCategoryCandidate/listByCategoryId',
+ method: "get",
+ apiKey: true,
+ params: {
+ ...params,
+ },
+ });
+};
// 投票推荐人,第一轮
export const saveBatch = (data) => {
@@ -135,7 +146,7 @@
data
});
};
-//投票部门,第一轮
+//第二轮投票,部门/最终投票
export const saveBatchCandidateResult = (data) => {
return request({
url: '/api/evaluate/evaluateCandidateResult/saveBatch',
@@ -144,7 +155,6 @@
data
});
};
-
// 获取用户所在部门的所有成员信息
export const userDeptinfo = (params) => {
return request({
--
Gitblit v1.9.3