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

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