|
@@ -6,17 +6,7 @@
|
|
|
<!-- 伸缩按钮 -->
|
|
|
<hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container"
|
|
|
@toggleClick="toggleSideBar" />
|
|
|
- <div style="margin: 0 20px; position: relative;">
|
|
|
- <!-- <ul v-show="isShowMenu" class="menu-list"> -->
|
|
|
- <top-nav class="menu-list" @closeMenuHandler="handlerShowMenu" :isShowMenu="isShowMenu"></top-nav>
|
|
|
- <!--
|
|
|
- <div class="manu-item-container cursor" @click="handlerRouteData(item,index)" v-for="(item, index) in routeData">
|
|
|
- <img :src="routeImgs[index]" class="menu-item-img" alt="" srcset="">
|
|
|
- <li :key="item.path + index" class="menu-item ">{{ item.meta.title }}
|
|
|
- </li>
|
|
|
- </div> -->
|
|
|
- <!-- </ul> -->
|
|
|
- </div>
|
|
|
+ <top-nav @closeMenuHandler="handlerShowMenu" :isShowMenu="isShowMenu"></top-nav>
|
|
|
</div>
|
|
|
|
|
|
|
|
@@ -167,51 +157,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .menu-list {
|
|
|
- overflow: hidden;
|
|
|
- padding: 10px;
|
|
|
- position: absolute;
|
|
|
- top: 30px;
|
|
|
- background-color: rgba(255, 255, 255, 1);
|
|
|
- box-sizing: border-box;
|
|
|
- // border-width: 1px;
|
|
|
- // border-style: solid;
|
|
|
- // border-color: rgba(228, 228, 228, 1);
|
|
|
- // border-radius: 10px;
|
|
|
- left: -100px;
|
|
|
- z-index: 1;
|
|
|
- list-style: none;
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
- flex-direction: row;
|
|
|
- width: 365px;
|
|
|
- height: 50vh;
|
|
|
- justify-content: start;
|
|
|
-
|
|
|
- .manu-item-container {
|
|
|
- width: 80px;
|
|
|
- height: 80px;
|
|
|
- font-size: 14px;
|
|
|
- // background-color: rgb(0, 140, 140);
|
|
|
- margin-left: 4px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- flex-direction: column;
|
|
|
- border-radius: 10px;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-color: rgb(221, 235, 248);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .menu-item-img {
|
|
|
- width: 22px;
|
|
|
- height: 22px;
|
|
|
- margin-bottom: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
.hamburger-container {
|
|
|
line-height: 46px;
|
|
|
height: 100%;
|