You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
325 B
12 lines
325 B
2 years ago
|
import { defHttp } from '@/utils/http/axios'
|
||
|
|
||
|
// 获得邮件日志
|
||
|
export const getMailLogApi = (id: number) => {
|
||
|
return defHttp.get({ url: '/system/mail-log/get?id=' + id })
|
||
|
}
|
||
|
|
||
|
// 获得邮件日志分页
|
||
|
export const getMailAccountPageApi = (params) => {
|
||
|
return defHttp.get({ url: '/system/mail-log/page', params })
|
||
|
}
|