|
|
@@ -7,10 +7,9 @@
|
|
|
<span style="width: 100%;" >
|
|
|
<div class="content" id="content" >
|
|
|
<div class="router-view" >
|
|
|
- <a-breadcrumb style="margin-bottom: 21px;font-size: 16px;" >
|
|
|
- <a-breadcrumb-item>系统概览</a-breadcrumb-item>
|
|
|
- <a-breadcrumb-item>系统设计</a-breadcrumb-item>
|
|
|
- </a-breadcrumb>
|
|
|
+ <div style="margin-bottom: 21px;font-size: 16px;" >
|
|
|
+ <breadcrumb />
|
|
|
+ </div>
|
|
|
<RouterView ></RouterView>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -23,14 +22,20 @@
|
|
|
import Navbar from './navbar.vue'
|
|
|
import SiderBar from './components/Sidebar/index.vue'
|
|
|
import { useIsMicro } from '@/hooks/effect'
|
|
|
+import breadcrumb from './breadcrumb'
|
|
|
|
|
|
const isMicro = useIsMicro()
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped >
|
|
|
+
|
|
|
+@font-face {
|
|
|
+ font-family: 'MyCustomFont';
|
|
|
+ src: url('../fonts/SourceHanSansCN-Normal.otf') format('opentype');
|
|
|
+}
|
|
|
+
|
|
|
.a-layout {
|
|
|
- /* width: 100vw; */
|
|
|
height: 100vh;
|
|
|
overflow: hidden;
|
|
|
.content {
|
|
|
@@ -47,9 +52,7 @@ const isMicro = useIsMicro()
|
|
|
box-sizing: border-box;
|
|
|
overflow: hidden;
|
|
|
overflow-y: scroll;
|
|
|
- // background: linear-gradient( 180deg, #E8FCFF 0%, #F3F6F9 39%, #F1F6FF 100%);
|
|
|
- font-family: "Source Han Sans CN-Regular" !important;
|
|
|
- font-weight: 400;
|
|
|
+ font-family: 'MyCustomFont', cursive !important;
|
|
|
background: url('@/assets/bg.png') no-repeat top left;
|
|
|
background-size: 100% 100%;
|
|
|
}
|