From 3b769135cdd55df5ae3e52b2ccea772082c30943 Mon Sep 17 00:00:00 2001 From: xingyuv Date: Wed, 22 Mar 2023 09:57:53 +0800 Subject: [PATCH] feat: mail account --- .../system/mail/account/AccountModel.vue | 58 ++++++++++ src/views/system/mail/account/account.data.ts | 109 ++++++++++++++++++ src/views/system/mail/account/index.vue | 80 ++++++++++++- 3 files changed, 246 insertions(+), 1 deletion(-) create mode 100644 src/views/system/mail/account/AccountModel.vue create mode 100644 src/views/system/mail/account/account.data.ts diff --git a/src/views/system/mail/account/AccountModel.vue b/src/views/system/mail/account/AccountModel.vue new file mode 100644 index 00000000..655e9159 --- /dev/null +++ b/src/views/system/mail/account/AccountModel.vue @@ -0,0 +1,58 @@ + + diff --git a/src/views/system/mail/account/account.data.ts b/src/views/system/mail/account/account.data.ts new file mode 100644 index 00000000..fb86d034 --- /dev/null +++ b/src/views/system/mail/account/account.data.ts @@ -0,0 +1,109 @@ +import { BasicColumn, FormSchema, useRender } from '@/components/Table' +import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' + +export const columns: BasicColumn[] = [ + { + title: '编号', + dataIndex: 'id', + width: 100 + }, + { + title: '邮箱', + dataIndex: 'mail', + width: 180 + }, + { + title: '用户名', + dataIndex: 'username', + width: 100 + }, + { + title: 'SMTP 服务器域名', + dataIndex: 'host', + width: 120 + }, + { + title: 'SMTP 服务器端口', + dataIndex: 'port', + width: 120 + }, + { + title: '是否开启 SSL', + dataIndex: 'sslEnable', + width: 180, + customRender: ({ text }) => { + return useRender.renderDict(text, DICT_TYPE.INFRA_BOOLEAN_STRING) + } + }, + { + title: '创建时间', + dataIndex: 'createTime', + width: 180, + customRender: ({ text }) => { + return useRender.renderDate(text) + } + } +] + +export const searchFormSchema: FormSchema[] = [ + { + label: '邮箱', + field: 'mail', + component: 'Input', + colProps: { span: 8 } + }, + { + label: '用户名', + field: 'username', + component: 'Input', + colProps: { span: 8 } + } +] + +export const formSchema: FormSchema[] = [ + { + label: '编号', + field: 'id', + show: false, + component: 'Input' + }, + { + label: '邮箱', + field: 'mail', + required: true, + component: 'Input' + }, + { + label: '用户名', + field: 'username', + required: true, + component: 'Input' + }, + { + label: '密码', + field: 'password', + required: true, + component: 'InputPassword' + }, + { + label: 'SMTP 服务器域名', + field: 'host', + required: true, + component: 'Input' + }, + { + label: 'SMTP 服务器端口', + field: 'port', + required: true, + component: 'Input' + }, + { + label: '是否开启 SSL', + field: 'sslEnable', + component: 'Select', + defaultValue: 0, + componentProps: { + options: getIntDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING) + } + } +] diff --git a/src/views/system/mail/account/index.vue b/src/views/system/mail/account/index.vue index 3b64cfc4..cd327d09 100644 --- a/src/views/system/mail/account/index.vue +++ b/src/views/system/mail/account/index.vue @@ -1,3 +1,81 @@ +