feat: 优化代码

This commit is contained in:
2025-08-06 20:25:41 +08:00
parent 5f7d0ceb79
commit 73823c50fd
1179 changed files with 42944 additions and 189654 deletions
@@ -0,0 +1,26 @@
<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>