|
@@ -1,22 +1,24 @@
|
|
|
<template>
|
|
|
- <span
|
|
|
- class="ctrl-pano-c fun-ctrl strengthen-left strengthen-top strengthen-bottom"
|
|
|
- v-if="custom.shwoRightCtrlPano && custom.viewMode !== 'full'"
|
|
|
- @click="custom.showRightPano = !custom.showRightPano"
|
|
|
- :class="{ active: custom.showRightPano }">
|
|
|
- <ui-icon type="extend" class="icon"></ui-icon>
|
|
|
- </span>
|
|
|
- <ui-editor-toolbox :toolbox="true" disabledAnimation :class="{ flex: $slots.header }">
|
|
|
- <template v-if="$slots.header">
|
|
|
- <div class="header">
|
|
|
- <slot name="header"></slot>
|
|
|
- </div>
|
|
|
- <div class="content">
|
|
|
- <slot></slot>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <slot v-else></slot>
|
|
|
- </ui-editor-toolbox>
|
|
|
+ <div id="right-pano">
|
|
|
+ <span
|
|
|
+ class="ctrl-pano-c fun-ctrl strengthen-left strengthen-top strengthen-bottom"
|
|
|
+ v-if="custom.shwoRightCtrlPano && custom.viewMode !== 'full'"
|
|
|
+ @click="custom.showRightPano = !custom.showRightPano"
|
|
|
+ :class="{ active: custom.showRightPano }">
|
|
|
+ <ui-icon type="extend" class="icon"></ui-icon>
|
|
|
+ </span>
|
|
|
+ <ui-editor-toolbox :toolbox="true" disabledAnimation :class="{ flex: $slots.header }">
|
|
|
+ <template v-if="$slots.header">
|
|
|
+ <div class="header">
|
|
|
+ <slot name="header"></slot>
|
|
|
+ </div>
|
|
|
+ <div class="content">
|
|
|
+ <slot></slot>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <slot v-else></slot>
|
|
|
+ </ui-editor-toolbox>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|