|
|
@ -1,9 +1,20 @@
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
|
|
|
* @Description:
|
|
|
|
|
|
|
|
* @version: v1
|
|
|
|
|
|
|
|
* @Author: zhangjiabao
|
|
|
|
|
|
|
|
* @Date: 2024-01-02 21:12:35
|
|
|
|
|
|
|
|
-->
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div class="app-wrapper" :class="{hideSidebar:!sidebar.opened}">
|
|
|
|
<div class="app-wrapper" :class="{hideSidebar:!sidebar.opened}">
|
|
|
|
<sidebar class="sidebar-container"></sidebar>
|
|
|
|
<sidebar class="sidebar-container"></sidebar>
|
|
|
|
<div class="main-container">
|
|
|
|
<div class="main-container">
|
|
|
|
<navbar></navbar>
|
|
|
|
<navbar></navbar>
|
|
|
|
<app-main></app-main>
|
|
|
|
<app-main></app-main>
|
|
|
|
|
|
|
|
<div class="footer">
|
|
|
|
|
|
|
|
<span>Copyright © www.Indie.cn, All Rights Reserved.</span>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<span>独立,不独于世</span>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -34,4 +45,15 @@ export default {
|
|
|
|
height: 100%;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-family: '微软雅黑', sans-serif;
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
color: #999999;
|
|
|
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|