Files
Hfive/pages/index/web.vue
2024-05-17 18:30:40 +08:00

25 lines
384 B
Vue

<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>