change payment component, upgrade golang to 1.22.4

This commit is contained in:
RockYang
2024-06-11 11:48:41 +08:00
parent bcdf5e3776
commit 6110522b54
6 changed files with 128 additions and 138 deletions

View File

@@ -237,9 +237,11 @@ onMounted(() => {
// refresh payment qrcode
const refreshPayCode = () => {
if (curPay.value === 'alipay') {
alipay()
alipay(curPayProduct.value)
} else if (curPay.value === 'hupi') {
huPiPay()
huPiPay(curPayProduct.value)
} else if (curPay.value === 'payjs') {
PayJs(curPayProduct.value)
}
}