This commit is contained in:
魏啾
2024-05-17 18:30:40 +08:00
parent 27100de568
commit 7cd5649764
22 changed files with 1980 additions and 50 deletions

25
pages/index/web.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<view class="">
<web-view :src="src"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
src: ''
}
},
onLoad(e) {
let content = decodeURIComponent(e);
console.log(JSON.parse(e))
this.src = JSON.parse(e.src)
},
}
// setTimeout(() => {
// window.location.href = res.data.url
// }, 1000);
</script>
<style>
</style>