From f19e67c39db9f6573ab4b8ea7666bd82a7989802 Mon Sep 17 00:00:00 2001 From: liuyu <839621039@qq.com> Date: Thu, 14 Mar 2024 09:45:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=AD=E4=BF=A1=E6=97=A5=E5=BF=97=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/sms/log/sms.log.data.ts | 36 ++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/src/views/system/sms/log/sms.log.data.ts b/src/views/system/sms/log/sms.log.data.ts index c975bb0f..09be1730 100644 --- a/src/views/system/sms/log/sms.log.data.ts +++ b/src/views/system/sms/log/sms.log.data.ts @@ -27,8 +27,8 @@ const crudSchemas = reactive({ }, { title: '短信渠道', - field: 'channelId', - // dictType: DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE, + field: 'channelCode', + dictType: DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE, // dictClass: 'number', isSearch: true, // table: { @@ -87,7 +87,37 @@ const crudSchemas = reactive({ title: t('common.createTime'), field: 'createTime', formatter: 'formatDate' - } + }, + { + title: 'API 发送结果', + field: 'apiSendCode', + isTable: false, + isForm: false + }, + { + title: 'API 短信编号', + field: 'apiSerialNo', + isTable: false, + isForm: false + }, + { + title: 'API 请求编号', + field: 'apiRequestId', + isTable: false, + isForm: false + }, + { + title: 'API 接收状态', + field: 'receiveStatus', + isTable: false, + isForm: false + }, + { + title: 'API 接收结果', + field: 'apiReceiveMsg', + isTable: false, + isForm: false + }, ] }) export const { allSchemas } = useVxeCrudSchemas(crudSchemas)