From 81e1b297b1fabec596c1cb7187ce2d6199026429 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Thu, 30 Nov 2023 16:51:10 +0800
Subject: [PATCH] 模拟考试成绩查询
---
src/api/system/user.js | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/src/api/system/user.js b/src/api/system/user.js
index f6ea6c0..18d013d 100644
--- a/src/api/system/user.js
+++ b/src/api/system/user.js
@@ -1,5 +1,20 @@
import request from '@/router/axios';
+
+export const getzhiwen = (id) => { //获取指纹的代码
+ return request({
+ url: '/api/blade-user/details',
+ method: 'get',
+ params: {
+ id
+ }
+ })
+}
+
+
+
+
+
export const getJurisdiction = (params) => {
return request({
url: '/api/jurisdiction/selJur',
@@ -70,6 +85,14 @@
url: '/api/blade-user/submit',
method: 'post',
data: row
+ })
+}
+
+export const checkAccountByUser = (data) => {
+ return request({
+ url: '/api/blade-user/checkAccount',
+ method: 'get',
+ params: data
})
}
@@ -149,6 +172,7 @@
})
}
+
export const getUserPractitionersInfo = (securityid) => {
return request({
url: '/api/experience/selectExperienceInfo',
--
Gitblit v1.9.3