fix: 查询参数类型改为 any

This commit is contained in:
puhui999
2025-04-03 21:36:44 +08:00
parent 113813ec94
commit 83ae8ce3fa
6 changed files with 15 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
import type { PageParam, PageResult } from '@vben/request';
import type { PageResult } from '@vben/request';
import { requestClient } from '#/api/request';
@@ -19,7 +19,7 @@ export namespace SystemMailAccountApi {
}
// 查询邮箱账号列表
export const getMailAccountPage = async (params: PageParam) => {
export const getMailAccountPage = async (params: any) => {
return await requestClient.get<
PageResult<SystemMailAccountApi.MailAccountVO>
>('/system/mail-account/page', { params });