diff --git a/src/views/system/sms/log/sms.log.data.ts b/src/views/system/sms/log/sms.log.data.ts index c975bb0fa..09be17304 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)