feat: pay demo

This commit is contained in:
xingyu4j
2025-05-27 14:20:07 +08:00
parent 48a593749b
commit 3b25efcc7e
12 changed files with 722 additions and 117 deletions

View File

@@ -1,13 +1,97 @@
<script lang="ts" setup>
import { Page } from '@vben/common-ui';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { DemoOrderApi } from '#/api/pay/demo/order';
import { Button } from 'ant-design-vue';
import { useRouter } from 'vue-router';
import { Page, useVbenModal } from '@vben/common-ui';
import { formatDateTime } from '@vben/utils';
import { message } from 'ant-design-vue';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import { getDemoOrderPage, refundDemoOrder } from '#/api/pay/demo/order';
import { DocAlert } from '#/components/doc-alert';
import { $t } from '#/locales';
import { useGridColumns } from './data';
import Form from './modules/form.vue';
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,
destroyOnClose: true,
});
const router = useRouter();
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
/** 创建订单 */
function handleCreate() {
formModalApi.setData(null).open();
}
/** 支付按钮操作 */
function handlePay(row: DemoOrderApi.Order) {
router.push({
name: 'PayCashier',
query: {
id: row.payOrderId,
returnUrl: encodeURIComponent(`/pay/demo/order?id=${row.id}`),
},
});
}
/** 退款按钮操作 */
async function handleRefund(row: DemoOrderApi.Order) {
const hideLoading = message.loading({
content: '退款中,请稍后...',
key: 'action_key_msg',
});
try {
await refundDemoOrder(row.id as number);
message.success({
content: '退款成功',
key: 'action_key_msg',
});
onRefresh();
} finally {
hideLoading();
}
}
const [Grid, gridApi] = useVbenVxeGrid({
gridOptions: {
columns: useGridColumns(),
height: 'auto',
keepSource: true,
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getDemoOrderPage({
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
},
toolbarConfig: {
refresh: { code: 'query' },
search: true,
},
} as VxeTableGridOptions<DemoOrderApi.Order>,
});
</script>
<template>
<Page>
<Page auto-content-height>
<DocAlert
title="支付宝支付接入"
url="https://doc.iocoder.cn/pay/alipay-pay-demo/"
@@ -24,23 +108,47 @@ import { DocAlert } from '#/components/doc-alert';
title="微信小程序支付接入"
url="https://doc.iocoder.cn/pay/wx-lite-pay-demo/"
/>
<Button
danger
type="link"
target="_blank"
href="https://github.com/yudaocode/yudao-ui-admin-vue3"
>
该功能支持 Vue3 + element-plus 版本
</Button>
<br />
<Button
type="link"
target="_blank"
href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/pay/demo/order/index"
>
可参考
https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/pay/demo/order/index
代码pull request 贡献给我们
</Button>
<FormModal @success="onRefresh" />
<Grid table-title="示例订单列表">
<template #toolbar-tools>
<TableAction
:actions="[
{
label: $t('ui.actionTitle.create', ['示例订单']),
type: 'primary',
icon: ACTION_ICON.ADD,
onClick: handleCreate,
},
]"
/>
</template>
<template #refundTime="{ row }">
<span v-if="row.refundTime">{{ formatDateTime(row.refundTime) }}</span>
<span v-else-if="row.payRefundId">退款中等待退款结果</span>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: '前往支付',
type: 'link',
ifShow: !row.payStatus,
onClick: handlePay.bind(null, row),
},
{
label: '发起退款',
type: 'link',
danger: true,
ifShow: row.payStatus && !row.payRefundId,
popConfirm: {
title: '确定发起退款吗?',
confirm: handleRefund.bind(null, row),
},
},
]"
/>
</template>
</Grid>
</Page>
</template>