中秋更行

This commit is contained in:
caolc
2022-09-09 14:57:19 +08:00
parent a10b2b7dcc
commit ced82c19bc
7 changed files with 79 additions and 8 deletions

View File

@@ -0,0 +1,28 @@
<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
methods: {
},
onReady() {
},
onLoad(e) {
this.url = JSON.parse(decodeURIComponent(e.url ));
},
}
</script>
<style>
</style>