From a598f579e21d4dcc30b5d8fa1737f24f4dd90012 Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期四, 27 七月 2023 17:38:16 +0800
Subject: [PATCH] Merge branch 'master' of http://dev.vci-tech.com:1065/r/ubcs
---
Source/UBCS-WEB/src/api/system/menu.js | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/Source/UBCS-WEB/src/api/system/menu.js b/Source/UBCS-WEB/src/api/system/menu.js
index f60ce49..ba197bb 100644
--- a/Source/UBCS-WEB/src/api/system/menu.js
+++ b/Source/UBCS-WEB/src/api/system/menu.js
@@ -1,4 +1,4 @@
-import request from '@/router/axios';
+ import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
@@ -23,13 +23,15 @@
})
}
-export const getLazyMenuList = (parentId, params) => {
+export const getLazyMenuList = (parentId, params, current, size) => {
return request({
url: '/api/ubcs-system/menu/lazy-menu-list',
method: 'get',
params: {
...params,
- parentId
+ parentId,
+ current,
+ size,
}
})
}
@@ -104,3 +106,9 @@
topMenuId,
}
});
+
+export const cloneMenuButton = (data) => request({
+ url: '/api/ubcs-system/menu/cloneMenuButton',
+ method: 'post',
+ data: data
+});
\ No newline at end of file
--
Gitblit v1.9.3