web.vue
336 Bytes
<template>
<view>
<!-- https://erp.lvqianmeiye.com/ai/ -->
<web-view :src="urlnew"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
urlnew:''
}
},
onLoad(e) {
// encodeURIComponent
this.urlnew = decodeURIComponent(e.url)
},
methods: {
}
}
</script>
<style>
</style>