Files
MP_XOIL_company_new/pages/tabbar/home/link.vue
2022-09-09 14:53:48 +08:00

27 lines
336 B
Vue

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