diff --git a/apps/web-antd/src/views/pay/notify/data.ts b/apps/web-antd/src/views/pay/notify/data.ts index 6b7b5cc57..4d28b5217 100644 --- a/apps/web-antd/src/views/pay/notify/data.ts +++ b/apps/web-antd/src/views/pay/notify/data.ts @@ -131,28 +131,38 @@ export function useGridColumns(): VxeTableGridOptions['columns'] { /** 详情列表的字段 */ export const detailColumns = [ { - label: '日志编号', - prop: 'id', + title: '日志编号', + dataIndex: 'id', key: 'id', + width: 120, + ellipsis: false, }, { - label: '通知状态', - prop: 'status', + title: '通知状态', + dataIndex: 'status', key: 'status', + width: 120, + ellipsis: false, }, { - label: '通知次数', - prop: 'notifyTimes', + title: '通知次数', + dataIndex: 'notifyTimes', key: 'notifyTimes', + width: 120, + ellipsis: false, }, { - label: '通知时间', - prop: 'lastExecuteTime', + title: '通知时间', + dataIndex: 'lastExecuteTime', key: 'lastExecuteTime', + width: 120, + ellipsis: false, }, { - label: '响应结果', - prop: 'response', + title: '响应结果', + dataIndex: 'response', key: 'response', + width: 120, + ellipsis: false, }, ]; diff --git a/apps/web-antd/src/views/pay/notify/modules/detail.vue b/apps/web-antd/src/views/pay/notify/modules/detail.vue index 66f6efb6a..85f1a2859 100644 --- a/apps/web-antd/src/views/pay/notify/modules/detail.vue +++ b/apps/web-antd/src/views/pay/notify/modules/detail.vue @@ -93,7 +93,11 @@ const [Modal, modalApi] = useVbenModal({ - +