This commit is contained in:
宋伟佳
2021-05-25 17:23:59 +08:00
parent a7d6193b7a
commit ab9519498a
5 changed files with 10 additions and 11 deletions
+6 -6
View File
@@ -1,11 +1,11 @@
<template> <template>
<div v-if="routerView" class="app-main-container"> <div v-if="routerView" class="app-main-container">
<vab-github-corner /> <!-- <vab-github-corner />-->
<transition mode="out-in" name="fade-transform"> <!-- <transition mode="out-in" name="fade-transform">-->
<keep-alive :include="cachedRoutes" :max="keepAliveMaxNum"> <!-- <keep-alive :include="cachedRoutes" :max="keepAliveMaxNum">-->
<router-view :key="key" class="app-main-height" /> <!-- <router-view :key="key" class="app-main-height" />-->
</keep-alive> <!-- </keep-alive>-->
</transition> <!-- </transition>-->
</div> </div>
</template> </template>
@@ -10,7 +10,7 @@
<vab-icon <vab-icon
:icon="[ :icon="[
'fas', 'fas',
isFullscreen ? 'compress-arrows-alt' : 'expand-arrows-alt', isFullscreen ? 'expand-arrows-alt' : 'compress-arrows-alt',
]" ]"
@click="click" @click="click"
></vab-icon> ></vab-icon>
-2
View File
@@ -193,7 +193,6 @@
.app-main-container { .app-main-container {
margin-top: $base-padding; margin-top: $base-padding;
margin-bottom: $base-padding; margin-bottom: $base-padding;
background: $base-color-white;
} }
} }
} }
@@ -253,7 +252,6 @@
.app-main-container { .app-main-container {
width: calc(100% - #{$base-padding} - #{$base-padding}); width: calc(100% - #{$base-padding} - #{$base-padding});
margin: $base-padding auto; margin: $base-padding auto;
background: $base-color-white;
border-radius: $base-border-radius; border-radius: $base-border-radius;
} }
} }
-1
View File
@@ -6,7 +6,6 @@
import Vue from 'vue' import Vue from 'vue'
import VueRouter from 'vue-router' import VueRouter from 'vue-router'
import Layout from '@/layouts' import Layout from '@/layouts'
import Home from '@/views/home'
import EmptyLayout from '@/layouts/EmptyLayout' import EmptyLayout from '@/layouts/EmptyLayout'
import { publicPath, routerMode } from '@/config' import { publicPath, routerMode } from '@/config'
@@ -1,6 +1,7 @@
<!--国内标准法规-->
<template> <template>
<div class="roleManagement-container"> <div class="roleManagement-container">
<h3>主题</h3> <h3>国内标准法规</h3>
</div> </div>
</template> </template>
@@ -13,3 +14,4 @@
methods: {}, methods: {},
} }
</script> </script>
<style lang="scss" scoped></style>