From 9907560470c1a6821f4998453bb885cd9fee3445 Mon Sep 17 00:00:00 2001 From: 潘志宝 <979469083@qq.com> Date: 星期日, 29 九月 2024 08:56:49 +0800 Subject: [PATCH] 预测数据分析 --- src/api/system/app/index.ts | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/api/system/app/index.ts b/src/api/system/app/index.ts index e5a5fd1..d247a19 100644 --- a/src/api/system/app/index.ts +++ b/src/api/system/app/index.ts @@ -1,5 +1,4 @@ import request from '@/config/axios' -import {TenantExportReqVO} from "@/api/system/tenant"; export interface AppVO { id: number @@ -20,9 +19,14 @@ 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' }) } // 获得 @@ -46,6 +50,6 @@ } // 导出 -export const exportApp = (params: TenantExportReqVO) => { +export const exportApp = (params: AppVO) => { return request.download({ url: '/system/app/export-excel', params }) } -- Gitblit v1.9.3