|
@@ -10,24 +10,23 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import iframeToggle from "./IframeToggle/index"
|
|
|
+import iframeToggle from "./IframeToggle/index";
|
|
|
|
|
|
export default {
|
|
|
- name: 'AppMain',
|
|
|
+ name: "AppMain",
|
|
|
components: { iframeToggle },
|
|
|
computed: {
|
|
|
cachedViews() {
|
|
|
- return this.$store.state.tagsView.cachedViews
|
|
|
+ return this.$store.state.tagsView.cachedViews;
|
|
|
},
|
|
|
key() {
|
|
|
- return this.$route.path
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
+ return this.$route.path;
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-
|
|
|
.app-main {
|
|
|
/* 50= navbar 50 */
|
|
|
min-height: calc(100vh - 50px);
|
|
@@ -46,13 +45,13 @@ export default {
|
|
|
/* 84 = navbar + tags-view = 50 + 34 */
|
|
|
min-height: calc(100vh - 84px);
|
|
|
|
|
|
-
|
|
|
//+++++++++++
|
|
|
/* position:fixed; */
|
|
|
}
|
|
|
|
|
|
.fixed-header + .app-main {
|
|
|
- padding-top: 84px;
|
|
|
+ // padding-top: 84px;
|
|
|
+ padding-top: 34px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|