Files
XiaoLingHou_web/pages/payPage/payPage.vue
2023-12-29 00:08:10 +08:00

24 lines
262 B
Vue

<template>
<view>
{{payurl}}
<web-view :src="payurl"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
payurl:''
};
},
onLoad(option) {
this.payurl = option.url
}
}
</script>
<style lang="scss">
</style>