Files
douhuo-h5/pages/webview/webview.vue
2023-05-15 13:18:38 +08:00

25 lines
356 B
Vue

<template>
<view class="">
<!-- 跳转第三方 -->
<block v-if="uraData != ''">
<web-view :src="uraData"></web-view>
</block>
</view>
</template>
<script>
export default {
data() {
return {
uraData: ''
};
},
onLoad(options) {
this.uraData = decodeURIComponent(this.$Route.query.faceUrl)
}
}
</script>
<style>
</style>