123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <!-- 编辑器-初始 -->
- <div class="view-screen">
- <!-- 内嵌的全景场景预览区域 -->
- <div
- class="app-player"
- ref="layer"
- >
- <Core/>
- <Toolbar class="navigation-toolbar"></Toolbar>
- </div>
- <!-- 初始和热点 底部的 全景场景列表 -->
- <!-- <toolbar></toolbar> -->
- <setting class="setting-panel"></setting>
- </div>
- </template>
- <script>
- import Setting from "./Setting.vue";
- import Core from "@/framework/core/core-v1.2.vue";
- import Toolbar from "@/framework/Toolbar.vue";
- export default {
- name: "editor-initial-setting",
- components: {
- Setting,
- Core,
- Toolbar,
- }
- };
- </script>
- <style lang="less" scoped>
- .view-screen {
- height: 100%;
- display: flex;
- .app-player {
- flex: 1 1 auto;
- padding: 10px;
- position: relative;
- height: 100%;
- .navigation-toolbar {
- position: absolute;
- left: 10%;
- right: 10%;
- top: 70%;
- bottom: 10%;
- }
- }
- .setting-panel {
- width: 274px;
- flex: 0 0 auto;
- }
- }
- </style>
|