短信日志详情修改

pull/420/head
liuyu 2024-03-14 09:45:47 +08:00
parent 71fa0c95e1
commit f19e67c39d
1 changed files with 33 additions and 3 deletions

View File

@ -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)