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
313 B

2 years ago
import { defHttp } from '@/utils/http/axios'
// 获得邮件日志
export function getMailLog(id: number) {
2 years ago
return defHttp.get({ url: '/system/mail-log/get?id=' + id })
}
// 获得邮件日志分页
export function getMailAccountPage(params) {
2 years ago
return defHttp.get({ url: '/system/mail-log/page', params })
}