feat: release v1.0.0

This commit is contained in:
2026-07-29 22:10:33 +08:00
parent 3abf272e33
commit 97235386ca
98 changed files with 2389 additions and 467 deletions

View File

@@ -1,7 +1,7 @@
import { http } from '@/lib'
import type { PageParams, SysApi, SysApiForm } from '@/schemas'
import type { PageParams, SearchSysApiParams, SysApi, SysApiForm } from '@/schemas'
export const getSysApis = (params: PageParams) => {
export const getSysApis = (params: PageParams & SearchSysApiParams) => {
return http.get<SysApi[], ApiPageResponse<SysApi>>('/api', { params })
}