vue3 重构:邮件账号的新增 + 修改 + 删除

This commit is contained in:
YunaiV
2023-03-17 01:35:38 +08:00
parent f1a80fe558
commit 262874a117
4 changed files with 124 additions and 10 deletions

View File

@ -10,13 +10,8 @@ export interface MailAccountVO {
sslEnable: boolean
}
export interface MailAccountPageReqVO extends PageParam {
mail?: string
username?: string
}
// 查询邮箱账号列表
export const getMailAccountPageApi = async (params: MailAccountPageReqVO) => {
export const getMailAccountPageApi = async (params: PageParam) => {
return await request.get({ url: '/system/mail-account/page', params })
}