|
|
@@ -1,13 +1,14 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <setting @select="handleInitScene"></setting>
|
|
|
- <toolbar
|
|
|
+ <GroupSettings
|
|
|
+ class="group-settings-area"
|
|
|
@catalog="data=>activeCataLog = data"
|
|
|
@addPano="onAddPano"
|
|
|
@addGroup="onAddGroup"
|
|
|
@addScene="onAddScene"
|
|
|
@rename="onRename"
|
|
|
- ></toolbar>
|
|
|
+ ></GroupSettings>
|
|
|
+ <InitialSceneSettings class="initial-scene-settings-area" @select="handleInitScene"></InitialSceneSettings>
|
|
|
<popup v-show="showAddGroup" :can-close="false">
|
|
|
<div class="ui-message ui-message-confirm dark" style="width: 400px">
|
|
|
<div class="ui-message-header">
|
|
|
@@ -99,8 +100,8 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import Setting from "./Setting";
|
|
|
-import Toolbar from "./Toolbar";
|
|
|
+import InitialSceneSettings from "./initialSceneSettings";
|
|
|
+import GroupSettings from "./groupSettings";
|
|
|
import Popup from "@/components/shared/popup";
|
|
|
import {
|
|
|
getSceneList,
|
|
|
@@ -114,8 +115,8 @@ import { changeByteUnit } from '@/utils/file'
|
|
|
export default {
|
|
|
name: "EditorNavigation",
|
|
|
components: {
|
|
|
- Setting,
|
|
|
- Toolbar,
|
|
|
+ InitialSceneSettings,
|
|
|
+ GroupSettings,
|
|
|
Popup,
|
|
|
Table,
|
|
|
},
|
|
|
@@ -363,6 +364,12 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
+.group-settings-area {
|
|
|
+ width: calc(100% - 236px);
|
|
|
+}
|
|
|
+.initial-scene-settings-area {
|
|
|
+ width: 236px;
|
|
|
+}
|
|
|
.dialog {
|
|
|
position: fixed;
|
|
|
z-index: 30;
|