vue页面里边嵌套web-view组件,然后web-view里边,嵌套一个用vue写的web网址,打开空白
- 发布:2020-07-11 18:09
- 更新:2020-07-11 18:09
- 阅读:676
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: Windows10
HBuilderX类型: Alpha
HBuilderX版本号: 2.8.0
手机系统: Android
手机系统版本号: Android 5.0
手机厂商: vivo
手机机型: X6A
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
应该显示正常页面
应该显示正常页面
实际结果:
显示空白
显示空白
bug描述:
我是在页面里边仿了一个web-view组件,然后我的页面里边,是用vue写的,然后打开就是空白页面
<template>
<cnPage statusbarBgColor="#fff" headerNavBgColor="#fff" :auto-header-nav-fix="false" :auto-status-bar-fix="false">
<web-view style="flex:1;" :src="url"></web-view>
</cnPage>
</template>
<script>
import cnPage from '@/CnUI/packages/cn-page/index.vue';
import { mapMutations } from 'vuex';
export default {
name:'upgradePayment',
data(){
return {
url:''
}
},
components:{
cnPage,
},
onLoad(option){
this.url = option.url;
},
onShow(){
this.updatePage('upgradePayment');
},
methods: {
...mapMutations(['updatePage']),
}
}
</script>
0 个回复