From aef77faa95585090fd03a82e7ddbca31e6002a77 Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期五, 27 九月 2024 12:00:09 +0800 Subject: [PATCH] 点击页面左上角logo和标题,默认跳转到index页 --- src/api/system/app/index.ts | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/api/system/app/index.ts b/src/api/system/app/index.ts index ef8b952..d247a19 100644 --- a/src/api/system/app/index.ts +++ b/src/api/system/app/index.ts @@ -19,11 +19,16 @@ createTime: Date } -// 查询列表 +// 查询分页列表 export const getAppPage = (params: PageParam) => { return request.get({ url: '/system/app/page', params }) } +// 查询列表 +export const getAppList = () => { + return request.get({ url: '/system/app/getAppList' }) +} + // 获得 export const getApp = (id: number) => { return request.get({ url: '/system/app/get?id=' + id }) -- Gitblit v1.9.3