You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
350 B
25 lines
350 B
<template>
|
|
<view class="panorama">
|
|
<view v-if="url">
|
|
<web-view :src="url" class="iframeView" style="height:75vh;position: fixed;" />
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default{
|
|
data(){
|
|
return{
|
|
url:''
|
|
}
|
|
},
|
|
onLoad(e) {
|
|
console.log('我是全景页面')
|
|
this.url = e.url;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|
|
|