diff --git a/src/api/system/mail/log/index.ts b/src/api/system/mail/log/index.ts index 9c6c60eb..13172a72 100644 --- a/src/api/system/mail/log/index.ts +++ b/src/api/system/mail/log/index.ts @@ -19,22 +19,12 @@ export interface MailLogVO { sendException: string } -export interface MailLogPageReqVO extends PageParam { - userId?: number - userType?: number - toMail?: string - accountId?: number - templateId?: number - sendStatus?: number - sendTime?: Date[] -} - // 查询邮件日志列表 -export const getMailLogPageApi = async (params: MailLogPageReqVO) => { +export const getMailLogPage = async (params: PageParam) => { return await request.get({ url: '/system/mail-log/page', params }) } // 查询邮件日志详情 -export const getMailLogApi = async (id: number) => { +export const getMailLog = async (id: number) => { return await request.get({ url: '/system/mail-log/get?id=' + id }) } diff --git a/src/types/descriptions.d.ts b/src/types/descriptions.d.ts index 48835e9c..35c0b81b 100644 --- a/src/types/descriptions.d.ts +++ b/src/types/descriptions.d.ts @@ -8,6 +8,6 @@ export interface DescriptionsSchema { labelAlign?: 'left' | 'center' | 'right' className?: string labelClassName?: string - dateFormat?: string - dictType?: string + dateFormat?: string // add by 星语:支持时间的格式化 + dictType?: string // add by 星语:支持 dict 字典数据 } diff --git a/src/views/system/mail/log/detail.vue b/src/views/system/mail/log/detail.vue new file mode 100644 index 00000000..1795f751 --- /dev/null +++ b/src/views/system/mail/log/detail.vue @@ -0,0 +1,31 @@ + + diff --git a/src/views/system/mail/log/index.vue b/src/views/system/mail/log/index.vue index a8b0c6c1..f8d98b83 100644 --- a/src/views/system/mail/log/index.vue +++ b/src/views/system/mail/log/index.vue @@ -20,7 +20,7 @@ 详情 @@ -30,26 +30,26 @@ - +