From 59c9fdfeecda48c774660b04fe84f5992caa1893 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期三, 18 十月 2023 11:04:13 +0800
Subject: [PATCH] 编码规则管理-同时只能一条编码规则设置最大流水号

---
 Source/UBCS-WEB/src/api/system/dept.js |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/Source/UBCS-WEB/src/api/system/dept.js b/Source/UBCS-WEB/src/api/system/dept.js
index d05c15d..8e594f5 100644
--- a/Source/UBCS-WEB/src/api/system/dept.js
+++ b/Source/UBCS-WEB/src/api/system/dept.js
@@ -12,13 +12,15 @@
   })
 }
 
-export const getLazyList = (parentId, params) => {
+export const getLazyList = (parentId, params,current, size,) => {
   return request({
     url: '/api/ubcs-system/dept/lazy-list',
     method: 'get',
     params: {
       ...params,
-      parentId
+      parentId,
+      current,
+      size
     }
   })
 }
@@ -79,3 +81,10 @@
   })
 }
 
+export const updateUserStatus = (params) => {
+  return request({
+    url: '/api/ubcs-user/updateUserStatus',
+    method: 'post',
+    data: params
+  })
+}

--
Gitblit v1.9.3