From c9a6f7cbb5209415e626df29c7572cf40fe92b66 Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期一, 06 一月 2025 11:44:50 +0800 Subject: [PATCH] 1、工作流程功能优化,解决流程图模拟功能simulation不生效的bug 2、system menu等页面修改 3、Footer copyright年份修改为动态 --- src/api/system/app/index.ts | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/api/system/app/index.ts b/src/api/system/app/index.ts index ef8b952..b783842 100644 --- a/src/api/system/app/index.ts +++ b/src/api/system/app/index.ts @@ -19,11 +19,21 @@ createTime: Date } -// 查询列表 +// 查询分页列表 export const getAppPage = (params: PageParam) => { return request.get({ url: '/system/app/page', params }) } +// 查询所拥有应用列表 +export const getAppList = () => { + return request.get({ url: '/system/auth/get-app-permission' }) +} + +// 查询所拥有应用菜单列表 +export const getAppMenuList = (id) => { + return request.get({ url: '/system/auth/get-app-menu-permission?id=' + id }) +} + // 获得 export const getApp = (id: number) => { return request.get({ url: '/system/app/get?id=' + id }) -- Gitblit v1.9.3