From dfd2e9de21f4c80f4d4735e180a0f1a034fca67e Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Tue, 06 May 2025 14:22:59 +0800
Subject: [PATCH] 页面风格与其他保持一致,处理中状态上传图片添加必填项限制,去掉“并派发”,下方按钮变更为“受理”、“不受理”、“取消”
---
src/api/system/dept.js | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/src/api/system/dept.js b/src/api/system/dept.js
index 730ca86..f0fcbc7 100644
--- a/src/api/system/dept.js
+++ b/src/api/system/dept.js
@@ -23,6 +23,14 @@
});
};
+export const getChildLazyTree = (params) => {
+ return request({
+ url: '/blade-system/dept/getChildLazyTree',
+ method: 'get',
+ params: params
+ });
+};
+
export const remove = ids => {
return request({
url: '/blade-system/dept/remove',
@@ -69,13 +77,11 @@
});
};
-export const getDeptLazyTree = parentId => {
+export const getDeptLazyTree = param => {
return request({
url: '/blade-system/dept/lazy-tree',
method: 'get',
- params: {
- parentId,
- },
+ params: param
});
};
--
Gitblit v1.9.3