Merge pull request #50 from DevDengChao/fix/demo-order-return-url

fix: 修复实例订单完成支付后跳转到 404 页面的问题
This commit is contained in:
芋道源码 2024-05-11 23:23:45 +08:00 committed by GitHub
commit 05e6c2c2df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,7 +147,7 @@ const handlePay = (row: any) => {
name: 'PayCashier', name: 'PayCashier',
query: { query: {
id: row.payOrderId, id: row.payOrderId,
returnUrl: encodeURIComponent('/pay/demo-order?id=' + row.id) returnUrl: encodeURIComponent('/pay/demo/order?id=' + row.id)
} }
}) })
} }