From 860c85e87a23d351bd39af3dcef75ac967cc7e43 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Wed, 20 Oct 2021 15:23:41 +0800
Subject: [PATCH] 培训成绩导出修改

---
 src/api/system/user.js |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/api/system/user.js b/src/api/system/user.js
index bc6f77c..1a2970a 100644
--- a/src/api/system/user.js
+++ b/src/api/system/user.js
@@ -13,7 +13,13 @@
 
 
 
-export const getList = (current, size, params, deptId) => {
+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',
@@ -21,7 +27,7 @@
             ...params,
             current,
             size,
-            deptId,
+            ...datas
         }
     })
 }

--
Gitblit v1.9.3