当前位置: 首页 > article >正文

vue2.x elementui 固定顶部、左侧菜单与面包屑,自适应 iframe 页面布局

vue elementui 固定顶部、左侧菜单与面包屑,自适应 iframe 页面布局

疑问点:iframe无法高度100%,如果写了100%就会有滚动条,所以只写了99.5%

【效果图】

路由示例

const routes = [
    {
        title: 'Index',
        path: '/',
        name: "Index",
        component: () => import('@/views/Index.vue'),
    },
    {
        title: 'TEST',
        path: '/TEST', // 使用内部页面时,路径为 "#/TEST"
        name: "TEST",
        component: () => import('@/views/TEST.vue'),
    },
]

页面完整代码

<template>
  <div class="container">
    <div class="top">
      <el-menu :default-active="activeIndex" class="el-menu-demo" mode="horizontal" @select="handleSelect">
        <el-menu-item index="1">Home</el-menu-item>
        <el-submenu index="2">
          <template slot="title">Options</template>
          <el-menu-item index="2-1">Option1</el-menu-item>
          <el-menu-item index="2-2">Option2</el-menu-item>
          <el-submenu index="2-4">
            <template slot="title">Option3</template>
            <el-menu-item index="2-4-1">Option3-1</el-menu-item>
            <el-menu-item index="2-4-2">Option3-2</el-menu-item>
          </el-submenu>
        </el-submenu>
        <el-menu-item index="3" disabled>Msg</el-menu-item>
        <el-menu-item index="4"><a href="https://www.ele.me" target="_blank">Order</a></el-menu-item>
      </el-menu>
    </div>
    <div class="wrap">
      <div class="l">
        <p style="margin-top: 32px;">aside-bar</p>
      </div>
      <div class="r">
        <div class="bread-wrap">
          <el-breadcrumb separator="/">
            <el-breadcrumb-item>首页</el-breadcrumb-item>
            <el-breadcrumb-item><a href="/">活动管理</a></el-breadcrumb-item>
            <el-breadcrumb-item>活动列表</el-breadcrumb-item>
            <el-breadcrumb-item>活动详情</el-breadcrumb-item>
          </el-breadcrumb>
        </div>
        <div class="iframe-wrap">
          <iframe :src="iframeUrl" width="100%" height="99.5%" frameborder="0"></iframe>
        </div>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      activeIndex: '1',
      // iframeUrl: '#/TEST',  // 关键点:使用内部页面的话,要按这样写
      iframeUrl: 'https://www.baidu.com',
    }
  },
  methods: {
    handleSelect(key, keyPath) {
      console.log(key, keyPath);
    }
  }
}
</script>

<style scoped lang="less">
.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: #fff;

  &>.top {
    height: 48px;
    background: #212121;
  }

  &>.wrap {
    flex: 1;
    display: flex;
    height: 0;

    &>.l {
      width: 200px;
      background: #212121;
    }

    &>.r {
      overflow-y: hidden;
      display: flex;
      flex-direction: column;
      flex: 1;
      width: 0;
      background: #fff;

      .bread-wrap {
        display: flex;
        align-items: center;
        height: 48px;
      }

      .iframe-wrap {
        overflow-y: auto;
        flex: 1;
        height: 0;
      }
    }
  }
}

.el-menu {
  height: 100%;
  background: transparent;
}

/deep/.el-menu--horizontal>.el-submenu .el-submenu__title,
.el-menu--horizontal>.el-menu-item,
.el-menu--horizontal>.el-submenu .el-submenu__title {
  height: 48px;
  line-height: 48px;
  color: #ccc;
}

.el-menu--horizontal>.el-menu-item.is-active {
  color: #fff;
}

.el-menu.el-menu--horizontal {
  border-bottom: solid 1px #000;
}
</style>


http://www.kler.cn/a/396802.html

相关文章:

  • 丹摩征文活动 |【前端开发】HTML+CSS+JavaScript前端三剑客的基础知识体系了解
  • Android 中的 Zygote 和 Copy-on-Write 机制详解
  • js像循环数组那样循环一个数字,Array.from()
  • 【C语言】实现二维数组按列排序
  • 虎扑APP数据采集:JavaScript与AJAX的结合使用
  • 【Three.js基础学习】22.New project structure
  • flutter字体大小切换案例 小字体,标准字体,大字体,超大字体案例
  • 基于Java Springboot图书馆管理系统
  • (一)- DRM架构
  • 微信小程序设置屏幕安全距离
  • 表单自动化填写-JavaScript脚本
  • TypeORM在Node.js中的高级应用
  • 深度学习的核心思想
  • 【freertos】FreeRTOS时间管理
  • 代码随想录算法训练营第三十一天| 56. 合并区间 、738.单调递增的数字 。c++转java
  • 右键添加获取可供WSL使用的路径,对windows文件夹也适用,即获取符合Linux规范的路径内容给WSL
  • 搭建高效稳定的ChatGPT网络环境:从网络专线到IP地址管理的全流程解析
  • SQL 处理数列
  • C++中特殊类设计/单例模式
  • Javascript_设计模式(二)
  • 将Excel文件的两个表格经过验证后分别读取到Excel表和数据库
  • HTML之图片和超链接的学习记录
  • 124. 二叉树中的最大路径和【 力扣(LeetCode) 】
  • go debug日记:protoc -I . helloworld.proto --go_out=plugins=grpc:.错误debug
  • 【个人笔记】如何将 Linux 文件系统扩容
  • C++__day1