uni.navigateTo({
url: `/pages/panorama/panorama`,
success: res => {},
fail: () => {},
complete: () => {}
});
<template>
<view class="container">
<web-view src="https:" style="width: 100%; height: 100%;"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.container{
background-color: #fff;
width: 100%;
height: 100%;
}
</style>