From 4c143c1c6cd011305d4e0edbeb009f520a5b9cfa Mon Sep 17 00:00:00 2001 From: xiaobai <2511883673@qq.com> Date: Wed, 15 Mar 2023 22:20:12 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=9F=AD=E4=BF=A1=E6=B8=A0=E9=81=93?= =?UTF-8?q?=E7=BF=BB=E5=86=99vue2->vue3=2020230315?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/sms/smsChannel/index.vue | 321 +++++++++++------- .../system/sms/smsChannel/sms.channel.data.ts | 63 ---- 2 files changed, 200 insertions(+), 184 deletions(-) delete mode 100644 src/views/system/sms/smsChannel/sms.channel.data.ts diff --git a/src/views/system/sms/smsChannel/index.vue b/src/views/system/sms/smsChannel/index.vue index ee47a51a..94a46b7d 100644 --- a/src/views/system/sms/smsChannel/index.vue +++ b/src/views/system/sms/smsChannel/index.vue @@ -1,147 +1,226 @@ diff --git a/src/views/system/sms/smsChannel/sms.channel.data.ts b/src/views/system/sms/smsChannel/sms.channel.data.ts deleted file mode 100644 index d3a807ed..00000000 --- a/src/views/system/sms/smsChannel/sms.channel.data.ts +++ /dev/null @@ -1,63 +0,0 @@ -import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas' -const { t } = useI18n() // 国际化 - -// 表单校验 -export const rules = reactive({ - signature: [required], - code: [required], - apiKey: [required], - status: [required] -}) - -// CrudSchema -const crudSchemas = reactive({ - primaryKey: 'id', - primaryType: 'id', - primaryTitle: '渠道编号', - action: true, - columns: [ - { - title: '短信签名', - field: 'signature', - isSearch: true - }, - { - title: '渠道编码', - field: 'code', - dictType: DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE, - isSearch: true - }, - { - title: t('common.status'), - field: 'status', - dictType: DICT_TYPE.COMMON_STATUS, - dictClass: 'number', - isSearch: true - }, - { - title: '短信 API 的账号', - field: 'apiKey' - }, - { - title: '短信 API 的密钥', - field: 'apiSecret' - }, - { - title: '短信发送回调 URL', - field: 'callbackUrl' - }, - { - title: t('common.createTime'), - field: 'createTime', - formatter: 'formatDate', - isForm: false, - search: { - show: true, - itemRender: { - name: 'XDataTimePicker' - } - } - } - ] -}) -export const { allSchemas } = useVxeCrudSchemas(crudSchemas) From a94172d7a5cccbd7f79e4f41102eaca2a37f7842 Mon Sep 17 00:00:00 2001 From: xiaobai <2511883673@qq.com> Date: Wed, 15 Mar 2023 22:20:28 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E7=9F=AD=E4=BF=A1=E6=B8=A0=E9=81=93?= =?UTF-8?q?=E7=BF=BB=E5=86=99vue2->vue3=2020230315?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/sms/smsChannel/form.vue | 137 +++++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 src/views/system/sms/smsChannel/form.vue diff --git a/src/views/system/sms/smsChannel/form.vue b/src/views/system/sms/smsChannel/form.vue new file mode 100644 index 00000000..7c20a90d --- /dev/null +++ b/src/views/system/sms/smsChannel/form.vue @@ -0,0 +1,137 @@ + +