fix: 🐛 代码规范检测问题修复

Former-commit-id: 6e75bc91ce33ea9e7a17fbcb896f086f768896f4
This commit is contained in:
郝先瑞
2023-04-15 23:51:27 +08:00
parent 5b033246bc
commit 0605f89a67
24 changed files with 440 additions and 450 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import { useTagsViewStore } from '@/store/modules/tagsView';
import { useTagsViewStore } from "@/store/modules/tagsView";
const tagsViewStore = useTagsViewStore();
</script>
@@ -18,10 +18,11 @@ const tagsViewStore = useTagsViewStore();
<style lang="scss" scoped>
.app-main {
position: relative;
width: 100%;
/* 50= navbar 50 */
min-height: calc(100vh - 50px);
width: 100%;
position: relative;
overflow: hidden;
background-color: var(--el-bg-color-page);
}
@@ -37,8 +38,8 @@ const tagsViewStore = useTagsViewStore();
}
.fixed-header + .app-main {
padding-top: 84px;
min-height: 100vh;
padding-top: 84px;
}
}
</style>