From 6ce99cb40ee88271fa0d0d8daea99ba0eaec122f Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 05 Nov 2021 16:01:39 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/zhba_enterprises
---
src/api/system/user.js | 32 ++++++++++++++++++++++++++++++--
1 files changed, 30 insertions(+), 2 deletions(-)
diff --git a/src/api/system/user.js b/src/api/system/user.js
index 0c21d46..2df0fdc 100644
--- a/src/api/system/user.js
+++ b/src/api/system/user.js
@@ -1,6 +1,25 @@
import request from '@/router/axios';
-export const getList = (current, size, params, deptId) => {
+export const getJurisdiction = (params) => {
+ return request({
+ url: '/api/jurisdiction/selJur',
+ method: 'get',
+ params: {
+ ...params
+ }
+ })
+}
+
+
+
+
+export const getList = (current, size, params, deptId, jurisdiction) => {
+ var datas = {};
+ if (jurisdiction == '') {
+ datas = { deptId: deptId };
+ } else {
+ datas = { jurisdiction: jurisdiction };
+ }
return request({
url: '/api/blade-user/page',
method: 'get',
@@ -8,7 +27,7 @@
...params,
current,
size,
- deptId,
+ ...datas
}
})
}
@@ -61,6 +80,15 @@
}
+export const updatePaperTime = (row) => {
+ return request({
+ url: '/api/blade-user/updatePaperTime',
+ method: 'post',
+ data: row
+ })
+}
+
+
export const saveOrUpdateUserPractitionersInfo = (row) => {
return request({
url: '/api/experience/saveOrUpdate',
--
Gitblit v1.9.3