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