|
@@ -27,8 +27,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
|
|
|
},
|
|
|
{
|
|
|
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<VxeCrudSchema>({
|
|
|
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)
|