diff --git a/src/api/system/mail/account/index.ts b/src/api/system/mail/account/index.ts index 10bcfe8..52bb8d6 100644 --- a/src/api/system/mail/account/index.ts +++ b/src/api/system/mail/account/index.ts @@ -1,6 +1,7 @@ import type { PageParam, PageResult } from '@/http/types' import { http } from '@/http/http' +/** 邮箱账号信息 */ export interface MailAccount { id?: number mail: string @@ -10,7 +11,6 @@ export interface MailAccount { port: number sslEnable: boolean starttlsEnable: boolean - remark?: string createTime?: string } diff --git a/src/api/system/mail/log/index.ts b/src/api/system/mail/log/index.ts index 5d848c5..421d19a 100644 --- a/src/api/system/mail/log/index.ts +++ b/src/api/system/mail/log/index.ts @@ -1,6 +1,7 @@ import type { PageParam, PageResult } from '@/http/types' import { http } from '@/http/http' +/** 邮件日志信息 */ export interface MailLog { id?: number userId?: number diff --git a/src/api/system/mail/template/index.ts b/src/api/system/mail/template/index.ts index 43d601e..31141e3 100644 --- a/src/api/system/mail/template/index.ts +++ b/src/api/system/mail/template/index.ts @@ -1,6 +1,7 @@ import type { PageParam, PageResult } from '@/http/types' import { http } from '@/http/http' +/** 邮件模板信息 */ export interface MailTemplate { id?: number name: string @@ -15,6 +16,7 @@ export interface MailTemplate { createTime?: string } +/** 发送邮件请求 */ export interface MailSendReqVO { templateCode: string templateParams: Record diff --git a/src/pages-system/mail/account/detail/index.vue b/src/pages-system/mail/account/detail/index.vue index b692910..8b9b2da 100644 --- a/src/pages-system/mail/account/detail/index.vue +++ b/src/pages-system/mail/account/detail/index.vue @@ -1,11 +1,13 @@