初始化

This commit is contained in:
2023-12-29 00:08:10 +08:00
commit 5ed0fc646f
512 changed files with 54378 additions and 0 deletions

23
pages/payPage/payPage.vue Normal file
View File

@@ -0,0 +1,23 @@
<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>