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>
<div v-if="routerView" class="app-main-container">
<vab-github-corner />
<transition mode="out-in" name="fade-transform">
<keep-alive :include="cachedRoutes" :max="keepAliveMaxNum">
<router-view :key="key" class="app-main-height" />
</keep-alive>
</transition>
<!-- <vab-github-corner />-->
<!-- <transition mode="out-in" name="fade-transform">-->
<!-- <keep-alive :include="cachedRoutes" :max="keepAliveMaxNum">-->
<!-- <router-view :key="key" class="app-main-height" />-->
<!-- </keep-alive>-->
<!-- </transition>-->
</div>
</template>
@@ -10,7 +10,7 @@
<vab-icon
:icon="[
'fas',
isFullscreen ? 'compress-arrows-alt' : 'expand-arrows-alt',
isFullscreen ? 'expand-arrows-alt' : 'compress-arrows-alt',
]"
@click="click"
></vab-icon>
-2
View File
@@ -193,7 +193,6 @@
.app-main-container {
margin-top: $base-padding;
margin-bottom: $base-padding;
background: $base-color-white;
}
}
}
@@ -253,7 +252,6 @@
.app-main-container {
width: calc(100% - #{$base-padding} - #{$base-padding});
margin: $base-padding auto;
background: $base-color-white;
border-radius: $base-border-radius;
}
}
-1
View File
@@ -6,7 +6,6 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
import Layout from '@/layouts'
import Home from '@/views/home'
import EmptyLayout from '@/layouts/EmptyLayout'
import { publicPath, routerMode } from '@/config'
@@ -1,6 +1,7 @@
<!--国内标准法规-->
<template>
<div class="roleManagement-container">
<h3>主题</h3>
<h3>国内标准法规</h3>
</div>
</template>
@@ -13,3 +14,4 @@
methods: {},
}
</script>
<style lang="scss" scoped></style>