|
@@ -28,6 +28,9 @@
|
|
|
|
|
|
|
|
<section class="center-area">
|
|
<section class="center-area">
|
|
|
<slot name="center"></slot>
|
|
<slot name="center"></slot>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 底部dock菜单-->
|
|
|
|
|
+ <BottomDock @change="handleDockChange" />
|
|
|
</section>
|
|
</section>
|
|
|
|
|
|
|
|
<aside class="right-sidebar">
|
|
<aside class="right-sidebar">
|
|
@@ -43,8 +46,13 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
+import BottomDock from '@/components/ui/BottomDock.vue';
|
|
|
|
|
+
|
|
|
export default {
|
|
export default {
|
|
|
name: 'DashboardLayout',
|
|
name: 'DashboardLayout',
|
|
|
|
|
+ components: {
|
|
|
|
|
+ BottomDock,
|
|
|
|
|
+ },
|
|
|
props: {
|
|
props: {
|
|
|
// 接收外部传入的 class,用于动态切换 CSS 网格布局
|
|
// 接收外部传入的 class,用于动态切换 CSS 网格布局
|
|
|
// 例如传入 "special-situation-monitoring"
|
|
// 例如传入 "special-situation-monitoring"
|