From 1cd37ba9db4b4b52b441978dfcaa37610418d98b Mon Sep 17 00:00:00 2001
From: yuxc <653031404@qq.com>
Date: 星期一, 25 九月 2023 09:32:20 +0800
Subject: [PATCH] 1、增加标准请码界面,授权了的才能查询到,编码分类树查询接口。

---
 Source/UBCS-WEB/src/api/system/user.js |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/Source/UBCS-WEB/src/api/system/user.js b/Source/UBCS-WEB/src/api/system/user.js
index 6026753..041d64c 100644
--- a/Source/UBCS-WEB/src/api/system/user.js
+++ b/Source/UBCS-WEB/src/api/system/user.js
@@ -137,3 +137,36 @@
     data:UserPwdstrategyVO
   })
 }
+
+// 鎻愰啋鏃堕棿
+export const check =(userId) => {
+  return request({
+    url: '/api/ubcs-user/check-renexpr',
+    method: 'post',
+    params:{
+      userId
+    }
+  })
+}
+
+// 鐢ㄦ埛map鍒楄〃鏌ヨ
+export const getByRoleUserList =(roleName) => {
+  return request({
+    url: '/api/ubcs-user/getByRoleUserList',
+    method: 'get',
+    params:{
+      roleName
+    }
+  })
+}
+//鍗曠偣鐧诲綍鎺ュ彛
+export const ssoLogin =(empCode) => {
+  return request({
+    url: '/api/ubcs-code/passwordFree/ssoLogin',
+    method: 'get',
+    params:{
+      empCode
+    }
+  })
+}
+

--
Gitblit v1.9.3