添加新文件
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user