32 lines
545 B
Vue
32 lines
545 B
Vue
<script>
|
|
import ImagesConstant from "@/common/ImagesConstant";
|
|
|
|
export default {
|
|
name: "web-view",
|
|
data(){
|
|
return{
|
|
viewUrl:'https://yitisheng.vip/wxSJIRHyQUBA/wxkf.html'
|
|
}
|
|
},
|
|
computed: {
|
|
ImagesConstant() {
|
|
return ImagesConstant
|
|
}
|
|
},
|
|
onLoad(e) {
|
|
if (e.url) {
|
|
this.viewUrl = e.url
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<web-view :src="viewUrl"></web-view>
|
|
<!-- <image class="marginCenter" :src="ImagesConstant.kfImage" style="height: 800rpx"/>-->
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|