mirror of
				https://gitee.com/lab1024/smart-admin.git
				synced 2025-11-04 18:33:43 +08:00 
			
		
		
		
	@@ -14,6 +14,7 @@
 | 
			
		||||
      <span class="ant-menu">{{ topMenu.menuName }}</span>
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- 次级菜单展示 -->
 | 
			
		||||
    <div class="bottom-menu">
 | 
			
		||||
      <a-menu  :selectedKeys="selectedKeys" :openKeys="openKeys" mode="inline">
 | 
			
		||||
        <template v-for="item in topMenu.children" :key="item.menuId">
 | 
			
		||||
          <template v-if="item.visibleFlag">
 | 
			
		||||
@@ -32,6 +33,7 @@
 | 
			
		||||
        </template>
 | 
			
		||||
      </a-menu>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
<script setup>
 | 
			
		||||
  import { ref } from 'vue';
 | 
			
		||||
@@ -84,10 +86,15 @@
 | 
			
		||||
</script>
 | 
			
		||||
<style scoped lang="less">
 | 
			
		||||
  .recursion-container {
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    height: 100vh;
 | 
			
		||||
    background: #ffffff;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .bottom-menu{
 | 
			
		||||
    overflow: auto;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    height: 90%;
 | 
			
		||||
    color: #515a6e;
 | 
			
		||||
  }
 | 
			
		||||
  .top-menu {
 | 
			
		||||
    overflow: hidden;
 | 
			
		||||
    display: flex;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user