|
@@ -7,16 +7,16 @@
|
|
|
<breadcrumb id="breadcrumb-container" class="breadcrumb-container"/>
|
|
|
<hr/>
|
|
|
<app-main/>
|
|
|
- <div class="copy-right">当前版本:V 0.0.1</div>
|
|
|
+ <div class="copy-right">当前版本:V 0.0.1</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
-import { Component } from "vue-property-decorator";
|
|
|
-import { mixins } from "vue-class-component";
|
|
|
-import { DeviceType, AppModule } from "@/store/modules/app";
|
|
|
-import { AppMain, Navbar, Sidebar, Breadcrumb } from "./components";
|
|
|
+import {Component} from "vue-property-decorator";
|
|
|
+import {mixins} from "vue-class-component";
|
|
|
+import {DeviceType, AppModule} from "@/store/modules/app";
|
|
|
+import {AppMain, Navbar, Sidebar, Breadcrumb} from "./components";
|
|
|
import ResizeMixin from "./mixin/resize";
|
|
|
|
|
|
@Component({
|
|
@@ -48,9 +48,10 @@ export default class extends mixins(ResizeMixin) {
|
|
|
.app-wrapper {
|
|
|
@include clearfix;
|
|
|
position: relative;
|
|
|
- height: 100%;
|
|
|
+ height: 100% ;
|
|
|
width: 100%;
|
|
|
- .copy-right{
|
|
|
+
|
|
|
+ .copy-right {
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
font-size: 12px;
|
|
@@ -80,12 +81,13 @@ export default class extends mixins(ResizeMixin) {
|
|
|
}
|
|
|
|
|
|
.sidebar-container {
|
|
|
+ background: rebeccapurple;
|
|
|
transition: width 0.28s;
|
|
|
width: $sideBarWidth !important;
|
|
|
height: 100%;
|
|
|
position: fixed;
|
|
|
font-size: 0px;
|
|
|
- top: 0;
|
|
|
+ top: 50px;
|
|
|
bottom: 0;
|
|
|
left: 0;
|
|
|
z-index: 1001;
|