邮箱模块:完善 log 相关的逻辑

This commit is contained in:
YunaiV
2023-01-26 20:39:38 +08:00
parent f9ab45df18
commit 525078abd3
19 changed files with 388 additions and 266 deletions

View File

@ -0,0 +1,18 @@
import request from '@/utils/request'
// 获得邮件日志
export function getMailLog(id) {
return request({
url: '/system/mail-log/get?id=' + id,
method: 'get'
})
}
// 获得邮件日志分页
export function getMailLogPage(query) {
return request({
url: '/system/mail-log/page',
method: 'get',
params: query
})
}