mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-09 10:22:25 +08:00
调整ui
This commit is contained in:
26
pages/vr/vr.vue
Normal file
26
pages/vr/vr.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<view class="vr-page">
|
||||
<web-view :src="src"></web-view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
src: ""
|
||||
};
|
||||
},
|
||||
onLoad(options) {
|
||||
this.src = decodeURIComponent(options.url);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.vr-page,
|
||||
.vr-page web-view {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user