Files
frontend-app/pages/other_package/alipay_payment/alipay_payment.vue
T

28 lines
506 B
Vue
Raw Normal View History

2025-08-05 15:25:23 +08:00
<template>
<view>
<web-view :src="paymentLink"></web-view>
2026-08-17 11:32:40 +08:00
<qiaobao-assistant page-key="pages/other_package/alipay_payment/alipay_payment" title="订单状态与支付" />
</view>
2025-08-05 15:25:23 +08:00
</template>
<script>
export default {
data() {
return {
paymentLink:''
}
},
onLoad(options) {
console.log("options",options);
this.paymentLink = decodeURIComponent(options.link); // 解码并设置支付链接
},
methods: {
}
}
</script>
<style>
</style>