我的布控。四色预警

This commit is contained in:
给我
2025-04-12 23:51:24 +08:00
parent a2e89f5ea1
commit 3754b9c5ed
21 changed files with 2238 additions and 256 deletions

View File

@ -1,10 +1,9 @@
<template>
<router-view v-slot="{ Component }" v-if="isRouterAlive">
<keep-alive :include="store.getters.keepLiiveRoute">
<Component :is="Component"></Component>
</keep-alive>
</router-view>
<router-view v-slot="{ Component }" v-if="isRouterAlive">
<keep-alive :include="store.getters.keepLiiveRoute">
<Component :is="Component"></Component>
</keep-alive>
</router-view>
</template>
<script setup>
import { ref, nextTick, provide, onMounted } from "vue";
@ -28,7 +27,6 @@ onMounted(() => {
let dept = getItem("deptId");
document.title = "林芝";
});
</script>
<style lang="scss">
@import "./styles/index.scss";
@ -51,7 +49,7 @@ li {
-moz-osx-font-smoothing: grayscale;
color: #fff;
overflow-x: auto;
background:#263445;
background: #263445;
}
//只显示一排内容
@ -106,4 +104,17 @@ v-deep .el-loading-mask {
font-weight: normal;
font-style: normal;
}
.bk_drawer_box {
.el-drawer__header {
background: #fff !important;
font-weight: 400;
font-size: 20px;
color: #000000;
line-height: 22px;
text-align: left;
text-transform: none;
margin-bottom:0;
height:40px;
}
}
</style>