Files
frontend-app/pages/other_package/alipay_payment/alipay_payment.vue
T
2026-07-25 09:12:36 +08:00

27 lines
389 B
Vue

<template>
<view>
<web-view :src="paymentLink"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
paymentLink:''
}
},
onLoad(options) {
console.log("options",options);
this.paymentLink = decodeURIComponent(options.link); // 解码并设置支付链接
},
methods: {
}
}
</script>
<style>
</style>