中秋更新

This commit is contained in:
caolc
2022-09-09 14:53:48 +08:00
parent a59bf23fd7
commit 26b9d6fe85
18 changed files with 388 additions and 275 deletions

View File

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