Jay
2024-09-24 389a9f6bc3986523766c5efa14845efdb8d78835
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 })
}