Files
oneos-frontend/apps/web-ele/src/views/pay/notify/modules/detail.vue
k kfluous 2650d1cdf0
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
Initial commit: OneOS frontend based on yudao-ui-admin-vben
2026-03-11 22:18:23 +08:00

80 lines
1.7 KiB
Vue

<script lang="ts" setup>
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { PayNotifyApi } from '#/api/pay/notify';
import { ref } from 'vue';
import { useVbenModal } from '@vben/common-ui';
import { ElDivider } from 'element-plus';
import { useVbenVxeGrid } from '#/adapter/vxe-table';
import { getNotifyTaskDetail } from '#/api/pay/notify';
import { useDescription } from '#/components/description';
import { useDetailLogColumns, useDetailSchema } from '../data';
const formData = ref<PayNotifyApi.NotifyTask>();
const [Description] = useDescription({
border: true,
column: 2,
schema: useDetailSchema(),
});
const [LogGrid, logGridApi] = useVbenVxeGrid({
gridOptions: {
columns: useDetailLogColumns(),
height: 'auto',
keepSource: true,
rowConfig: {
keyField: 'id',
isHover: true,
},
pagerConfig: {
enabled: false,
},
toolbarConfig: {
enabled: true,
refresh: true,
},
} as VxeTableGridOptions,
});
const [Modal, modalApi] = useVbenModal({
async onOpenChange(isOpen: boolean) {
if (!isOpen) {
formData.value = undefined;
return;
}
// 加载数据
const data = modalApi.getData<PayNotifyApi.NotifyTask>();
if (!data || !data.id) {
return;
}
modalApi.lock();
try {
formData.value = await getNotifyTaskDetail(data.id);
logGridApi.grid?.reloadData(formData.value?.logs || []);
} finally {
modalApi.unlock();
}
},
});
</script>
<template>
<Modal
title="通知详情"
class="w-1/2"
:show-cancel-button="false"
:show-confirm-button="false"
>
<Description :data="formData" />
<ElDivider />
<LogGrid table-title="支付通知列表" />
</Modal>
</template>