|
@@ -12,24 +12,24 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { useAppStore } from '@/store/app'
|
|
|
-import { usePermissionStore } from '@/store/permission'
|
|
|
+import { useAppStore } from "@/store/app";
|
|
|
+import { usePermissionStore } from "@/store/permission";
|
|
|
// import Logo from './Logo.vue'
|
|
|
-import SidebarItem from './SidebarItem.vue'
|
|
|
+import SidebarItem from "./SidebarItem.vue";
|
|
|
//导入配置文件
|
|
|
-const appStore = useAppStore()
|
|
|
+const appStore = useAppStore();
|
|
|
const settings = computed(() => {
|
|
|
- return appStore.settings
|
|
|
-})
|
|
|
+ return appStore.settings;
|
|
|
+});
|
|
|
|
|
|
-const route = useRoute()
|
|
|
-const permissionStore = usePermissionStore()
|
|
|
+const route = useRoute();
|
|
|
+const permissionStore = usePermissionStore();
|
|
|
const routes = computed(() => {
|
|
|
- return permissionStore.routes
|
|
|
-})
|
|
|
+ return permissionStore.routes;
|
|
|
+});
|
|
|
const isCollapse = computed(() => {
|
|
|
- return appStore.sidebar.opened
|
|
|
-})
|
|
|
+ return appStore.sidebar.opened;
|
|
|
+});
|
|
|
|
|
|
//change scss variable to js
|
|
|
// const dillScssExportToJson = (scssExportJson: any) => {
|
|
@@ -49,23 +49,24 @@ const isCollapse = computed(() => {
|
|
|
// const scssJson = dillScssExportToJson(scssExportJson)
|
|
|
//get scss variable
|
|
|
|
|
|
-
|
|
|
-
|
|
|
const activeMenu = computed(() => {
|
|
|
- const { meta, path } = route
|
|
|
+ const { meta, path } = route;
|
|
|
// if set path, the sidebar will highlight the path you set
|
|
|
if (meta.activeMenu) {
|
|
|
- return meta.activeMenu
|
|
|
+ return meta.activeMenu;
|
|
|
}
|
|
|
- return path
|
|
|
-})
|
|
|
+ return path;
|
|
|
+});
|
|
|
</script>
|
|
|
<style scoped lang="scss">
|
|
|
//fix open the item style issue
|
|
|
// .el-menu-vertical {
|
|
|
// width: var(--side-bar-width);
|
|
|
// }
|
|
|
-:deep .el-menu-item.is-active{
|
|
|
- background:#AC014D ;
|
|
|
+:deep .el-menu-item.is-active {
|
|
|
+ background: #ac014d;
|
|
|
+}
|
|
|
+:deep .el-menu--inline .el-menu-item {
|
|
|
+ padding-left: 50px !important;
|
|
|
}
|
|
|
</style>
|