36 lines
670 B
Vue
36 lines
670 B
Vue
|
<template>
|
||
|
<view class="page">
|
||
|
<u-navbar title="VR" :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
|
||
|
title-size='36' height='36' id="navbar">
|
||
|
</u-navbar>
|
||
|
<web-view :src="url"></web-view>
|
||
|
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
bgc: {
|
||
|
backgroundColor: "#fff",
|
||
|
},
|
||
|
url:'https://bao.chuangtewl.com/photoSphereViewer?storeId='
|
||
|
}
|
||
|
},
|
||
|
onLoad() {
|
||
|
this.url = this.url + this.$store.state.storeId
|
||
|
console.log(this.url);
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
page {
|
||
|
background: #fff;
|
||
|
}
|
||
|
</style>
|