|
@@ -0,0 +1,55 @@
|
|
|
+<template>
|
|
|
+ <div class="iframe-wrap">
|
|
|
+ <iframe
|
|
|
+ src="https://houseoss.4dkankan.com/project/wuxicishanbwg/index.html?m=SG-igv7wQAyyyG_01#/"
|
|
|
+ frameborder="0"
|
|
|
+ allow="fullscreen"
|
|
|
+ />
|
|
|
+ <button
|
|
|
+ class="back"
|
|
|
+ @click="router.go(-1)"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import { ref, computed, watch, onMounted } from "vue"
|
|
|
+import { useRoute, useRouter } from "vue-router"
|
|
|
+import { useStore } from "vuex"
|
|
|
+
|
|
|
+const route = useRoute()
|
|
|
+const router = useRouter()
|
|
|
+const store = useStore()
|
|
|
+
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.iframe-wrap{
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ z-index: 10;
|
|
|
+ >iframe{
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ >button.back{
|
|
|
+ position: absolute;
|
|
|
+ left: 15px;
|
|
|
+ top: 20px;
|
|
|
+ width: 60px;
|
|
|
+ height: 60px;
|
|
|
+ background-image: url(@/assets/images/icon_back.png);
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center center;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|