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,8 +1,14 @@
import { http } from '@/lib'
import type { SysRole, SysUser, SysUserFormOutput, SysUserInfo } from '@/schemas'
import type {
SearchSysUserParams,
SysRole,
SysUser,
SysUserFormOutput,
SysUserInfo,
} from '@/schemas'
import { type PageParams } from '@/schemas'
export const getSysUsers = (params: PageParams) => {
export const getSysUsers = (params: PageParams & SearchSysUserParams) => {
return http.get<SysUser[], ApiPageResponse<SysUser>>('/user', { params })
}