vue+ElementUI—实现基础后台管理布局(sideBar+header+appMain)(附源码)

后台管理的模板很多,vue本身就提供了完整的vue-template-admin,vue-admin-beautiful等后台管理系统化框架,但是这些框架正是因为成体系而显得繁重。假如你想搭建一个静态的后台管理模板页面和几个单独的菜单页面,直接就上框架是否就有点大材小用了呢 百分之九十以上的后台管理布局基本都是头部导航,侧边栏,主内容三部分组成。所以,将其单独摘出来为一个单独的轻量后台页面就很有必要了。

1. 效果展示

最常见的系统布局就是:左右布局。左侧是菜单栏,右侧是内容区,内容区又分为头部和展示区。。所以我们的效果显示如下:

 目录结构呢,也很简单,因为不涉及请求,所以就是vue+element+vuex即可

 这种就很适合做vue的静态页面演示开发,因为就只有几个页面,不涉及复杂的路由和权限啥的。

本博文是借鉴了这篇博客写的:vue+elementUi——实现后台管理系统的布局(sideBar+header+appMain)_element ui页面布局模板-CSDN博客

但是由于它的细节问题太多,在调试过程中也遇到了一些问题,所以重新写一篇调试完后的代码,主要的就是方便你我他。

2.关键代码

如果迁入自由的项目,可以复制对应的关键代码,store代码,配置对应的路由,自己调试也可。如果想直接拿来即用的,下面也会附上vue代码git地址。

index.vue 主页面,负责引入头部,侧边栏,主内容组件

<template><div class="app-wrapper"><div class="layout-aside" :class="isCollapse?'collapse':''"><div class="layout-logo"><router-link to="/"><img v-show="!isCollapse" style="width:50px;height:auto" src="@/assets/logo.png" alt="logo"/><img v-show="isCollapse" style="width:44px;height:auto" src="@/assets/logo.png" alt="logo"/><!-- <span v-show="!isCollapse">工业品超市管理后台</span> --></router-link></div><SideBar :collapse="isCollapse" /></div><div class="layout-container" :class="{collapse:isCollapse}"><div class="layout-header" :class="{collapse:isCollapse}"><Header /></div><div class="layout-main"><AppMain /></div></div></div>
</template>
<script>import Header from "@/components/Header";import SideBar from "@/components/SideBar";import AppMain from "@/components/AppMain";export default{name:'layout',//此页面在router/index.js中对应的namecomponents:{Header,SideBar,AppMain},computed:{isCollapse:function(){return this.$store.state.isCollapse;}},methods:{}}
</script>
<style lang="scss" scoped>
.app-wrapper{position:relative;
}
.layout-aside{position:fixed;left:0;top:0;height:100vh;width:210px;transition:all 0.3s;background-color:#fff;.layout-logo{height:60px;background-color:#ffffff;a{display:flex;width:100%;height:60px;justify-content:center;align-items:center;}img{width:100px;height:auto;}}
}
.layout-aside.collapse{width:64px;
}
.layout-container{margin-left:210px;height:100%;overflow:hidden;
}
.layout-container.collapse{margin-left:64px;transition:all 0.1s;
}
.layout-header{position:fixed;z-index:1;top:0;right:0;width:calc(100% - 210px);height:60px;box-shadow:0 1px 3px rgba(0,21,41,0.08);background-color:#fff;
}
.layout-header.collapse{width:calc(100% - 64px);transition:all 0.1s;
}
.layout-main{padding: 20px;min-height:calc(100vh - 150px);margin:70px 15px 10px 10px;background-color:#fff;
}
</style>

Header头部部分:

<template><div class="header-wrapper"><div class="header-left"><div class="open-icon" @click="handleCollapse"><i class="el-icon-s-fold" v-show="!isMenuOpen"></i><i class="el-icon-s-unfold" v-show="isMenuOpen"></i><span style="font-size:16px;margin-left:5px">梦缘系统</span></div><el-breadcrumb separator="/"><template v-for="(item,index) in breadcrumbList"><el-breadcrumb-item :key="index" v-if="item.meta.title" :to="{path:item.path}"></el-breadcrumb-item></template></el-breadcrumb></div><div class="header-right"><span class="header-user">{{currentName}},欢迎回来</span><el-dropdown  trigger="click"><span class="el-dropdown-line"><img src="https://liuqingwushui.top/usr/uploads/2024/10/09/1728443808722546.jpg" style="border-radius:50%;width:32px" alt="avatar"/><i class="el-icon-arrow-down el-icon--right"></i></span><el-dropdown-menu slot="dropdown"><el-dropdown-item  icon="el-icon-setting">修改密码</el-dropdown-item ><el-dropdown-item  icon="el-icon-guide" @click.native="handleLogout">退出登录</el-dropdown-item ></el-dropdown-menu></el-dropdown></div></div>
</template>
<script>// import {logout} from "@/api/user";export default{name:'Header',data(){return {isMenuOpen:false,breadcrumbList:[],currentName:'admin'}},watch:{$route(to,from){this.updateBreadcrumb(to.matched);}},mounted(){this.updateBreadcrumb(this.$route.matched);},methods:{updateBreadcrumb(list=[]){this.breadcrumbList = list;},handleCollapse(){this.isMenuOpen= !this.isMenuOpen;this.$store.commit('changeCollapse',this.isMenuOpen);},handleLogout(){this.$confirm('确认退出?','提示',{confirmButtonTextt:'确定',cancelButtonText:'取消',type:'warning'}).then(()=>{//logout();this.$router.push('/login');}).catch(()=>{})}}}
</script>
<style lang="scss" scope>
.header-wrapper{display:flex;justify-content:space-between;align-content:center;padding:0 15px;height:60px;.header-left{display:flex;align-items:center;.open-icon{font-size:20px;margin-right:15px;cursor:pointer;display: flex;align-items: center;}}.header-right{display:flex;align-items:center;.header-user{margin-right:15px;}}
}
.el-dropdown-link{cursor:pointer;color:#409eff;img{width:40px;height:40px;border-radius:5px;}
}
.el-icon-arrow-down{font-size:12px;
}
.demostration{display:block;color:#8492a6;font-size:14px;margin-bottom:20px;
}
</style>

Sidebar侧边栏部分:

<template><el-scrollbar class="sidebar-scroll"><el-menu  class="el-menu-vertical-demo" :default-active="this.$route.path"  :collapse="isCollapse" router><template v-for="(item,index) in menuData"><el-submenu v-if="item.children && item.children.length > 0" :key="index" :index="item.path"><template slot="title"><i :class="item.meta.icon"></i><span>{{ item.meta.title }}</span></template><el-menu-itemv-for="(child,childIndex) in item.children":key="`${index}-${childIndex}`":index="child.path"><i :class="child.meta.icon"></i><span>{{ child.meta.title }}</span></el-menu-item></el-submenu><el-menu-item v-else :key="index" :index="item.path"><i :class="item.meta.icon"></i><span>{{ item.meta.title }}</span></el-menu-item></template></el-menu></el-scrollbar>
</template>
<script>import {mapState,mapGetters} from "vuex";export default{name:'SideBar',computed:{...mapGetters(['firstMenu','subMenu','menuData']),isCollapse:function(){return this.$store.state.isCollapse;}},props:{collapse:{type:Boolean,default:false}},data(){return {currentRouter:''}},watch:{$route(to,from){this.currentRouter = to.path;}},mouted(){this.currentRouter = this.$route.path;},methods:{}}
</script>
<style lang="scss" scoped>.sidebar-scroll{height:calc(100% - 60px);}.sidebar{height:100%;text-align:left;border-right:none;}.el-menu-vertical-demo:not(.el-menu--collapse) {width: 210px;min-height: 400px;}
</style>

Appmain主内容部分:

<template><div class="app-main"><transition name="fade-transfrom" mode="out-in"><router-view /></transition></div>
</template>
<script>
export default{name:'AppMain'
}
</script>
<style lang="scss" scope>.app-main{width:100%;height:100%;}
</style>

Store状态管理js:

// src/store/index.js
import Vue from 'vue';
import Vuex from 'vuex';Vue.use(Vuex);export default new Vuex.Store({state:{isCollapse:false,menuData:[{path:'/dream/home',meta:{icon:'el-icon-data-line',title:'首页'}},{path:'/dream/2',meta:{icon:'el-icon-office-building',title:'梦缘'}},{path:'/dream/3',meta:{icon:'el-icon-place',title:'流情'}},{path:'/dream/4',meta:{icon:'el-icon-postcard',title:'日志'}},{path:'/dream/5',meta:{icon:'el-icon-pie-chart',title:'数据'},children:[{path:'/dream/6',meta:{icon:'el-icon-postcard',title:'数据1'}},]   }]},mutations:{changeCollapse: (state,isCollapse) => {state.isCollapse = isCollapse},setMenuData(state,menuData){state.menuData = menuData;}},actions: {// 异步 actions},getters:{menuData(state,rootState){if(state.filterMenu){const {permissions,roles} = rootState.accout;return filterMenu(JSON.parse(JSON.stringfy(state.menuData)),permissions,roles)}return state.menuData;},firstMenu(state){const {menuData} = state;if(menuData.length>0&&!menuData[0].fullPath){formatFullPath(menuData);}return menuData.map(item=>{const menuItem = {...item};delete menuItem.children;return menuItem})},subMenu(state){const {menuData,activateFirst} = state;if(menuData.length>0&&!menuData[0].fullPath){formatFullPath(menuData);}const current = menuData.find(menu=>menu.fullPath== activatedFirst);return current && current.chilren||[]}},modules: {// 模块}
});

3.示例源码下载

git地址:vue-admin-static: vue+element后台管理极简版:头部和侧边导航栏,固定路由。适合写vue简单的静态演示,不适合做复杂系统开发

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/56419.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C#源码安装ZedGraph曲线显示组件

在软件开发里,数据的显示,已经是软件开发的大头。 如果让数据更加漂亮地、智能地显示,就是软件的核心价值了。 因为不管数据千万条,关键在于用户看到图。因为一个图表,就可以表示整个数据的趋势, 或者整个数据的走向,数据频度和密码。所以图表显示是软件的核心功能,比如…

2.1.ReactOS系统中中断描述符表进行初始化

2.&#xff11;.ReactOS系统中中断描述符表进行初始化 2.&#xff11;.ReactOS系统中中断描述符表进行初始化 文章目录 2.&#xff11;.ReactOS系统中中断描述符表进行初始化 VOID INIT_FUNCTION NTAPI KeInitExceptions(VOID) {ULONG i;USHORT FlippedSelector;extern KIDTEN…

【计网】从零开始理解UDP协议 --- 理解端口号和UDP结构

我依旧敢和生活顶撞&#xff0c; 敢在逆境里撒野&#xff0c; 直面生活的污水&#xff0c; 永远乐意为新一轮的月亮和日落欢呼。 --- 央视文案 --- 从零开始理解UDP协议 1 再谈端口号2 理解UDP 报头结构3 UDP 的特点4 UDP 的缓冲区5 UDP 使用注意事项 1 再谈端口号 之前我…

自然语言处理问答系统

自然语言处理&#xff08;NLP&#xff09;问答系统是一种自动化系统&#xff0c;旨在接收自然语言查询并提供相应的答案。以下是对自然语言处理问答系统的详细描述&#xff0c;包括其架构、关键组件、实现方法、挑战与解决方案等。 1. 系统架构 自然语言处理问答系统通常由以…

Ubuntu 24.04 在 BPI-F3 上通过 SD 卡安装并从 NVME 运行

github 代码&#xff1a; https://github.com/rcman/BPI-F3 Ubuntu 24.04 现在正在我的 BPI-F3 上运行。很快会为 YouTube 制作一个视频。 这应该适用于任何版本的 Linux&#xff0c;仅在 Ubuntu 24.04 上测试过 入门 下载 Bianbu映像并使用您最喜欢的工具将其映像到微型 SD 卡…

服务器、jvm、数据库的CPU飙高怎么处理

服务器 CPU 飙高处理 排查步骤&#xff1a; 监控工具&#xff1a;使用操作系统自带的监控工具&#xff0c;比如 top、htop、sar、vmstat 等&#xff0c;查看哪些进程占用了大量的 CPU 资源。进程排查&#xff1a;通过 top 等工具找到消耗 CPU 最高的进程&#xff0c;确定是哪…

如何在冻结的MSA内部更改q,k,v的形状

在冻结多头自注意力&#xff08;MSA&#xff09;层的参数的情况下&#xff0c;若希望更改 q&#xff08;查询&#xff09;、k&#xff08;键&#xff09;、v&#xff08;值&#xff09;的形状&#xff0c;可以通过修改这些矩阵的输出维度或重新排列它们的维度&#xff0c;而不需…

【MongoDB】mongodb | 部署 | 常用命令

一、概述 基于mongodb的tcp连接无数据上报&#xff0c;服务器强踢监测。 物联网项目&#xff0c;tcp协议&#xff0c;基于4G卡&#xff0c;设备由于某些原因会断开重连&#xff0c;但是tcp没有断开&#xff0c;导致tcp持续累加&#xff0c;浪费资源。 建立机制&#xff1a; 当t…

解决一个android service启动无法开文件的问题

问题描述 android hal层一般是通过service给系统提供服务的。一般需要将service配置为开机启动。调试阶段&#xff0c;我直接将service push到板卡上&#xff0c;进行调试&#xff0c;未出现问题无法开的问题。在最后集成完成后&#xff0c;放到板卡上&#xff0c;出现启动无法…

【win10】VMware Workstation 16安装win10专业版及安装VMware Tools操作说明

参考链接 VMware虚拟机安装win10系统教程&#xff08;巨细&#xff09;_vmware安装win10-CSDN博客https://blog.csdn.net/gdidea/article/details/129523700 win10专业版安装说明 下载win10安装包 百度网盘 链接: https://pan.baidu.com/s/1kf4ORdXYgcqwAz2j86LSZw?pwdk4…

MySQL-数据库的基础操作 o(´^`)o

文本目录&#xff1a; ❄️一、数据库操作&#xff1a; ☑ 1、查看所有的数据库&#xff1a; ☑ 2、创建数据库&#xff1a; ☑ 3、使用数据库&#xff1a; ☑ 4、删除数据库&#xff1a; ❄️二、常用的数据类型&#xff1a; ➷ 1、数值类型&#xff1a; ➷ 2、字符串类型&a…

【2D/3D-Lidar-SLAM】 Cartographer详细解读

【2D/3D-Lidar-SLAM】 Cartographer详细解读 1. 摘要2. Cartographer系统数据处理流程2.1. 数据获取&#xff08;Input Sensor Data&#xff09;2.2 姿态外推器&#xff08;PoseExtrapolator&#xff09;2.3 局部建图&#xff08;Local SLAM&#xff09; 3. 关键模块实现 3.1 局…

【无标题】react组件封装

子组件制作 import { useState,useRef, useEffect} from "react"const Table (data)> {const {value ,option} dataconsole.log(value)const [stata,setValue] useState()const useRefs useRef(value)useEffect(()> {useRefs.current.value value })c…

MyBatis XML映射文件

XML映射文件 XML映射文件的名称与Mapper接口名称一致&#xff0c;并且将XML映射文件和Mapper接口放置在相同包下&#xff08;同包同名&#xff09;XML映射文件的namespace属性为Mapper接口全限定名一致XML映射文件中SQL语句的id与Mapper接口中的方法名一致&#xff0c;并保持返…

某知名国企面试题

引言 金九银十&#xff0c;求职热潮再度来袭。最近&#xff0c;有位同学去一家知名国企应聘&#xff0c;回来后带回了一套面试题。这套面试题非常典型&#xff0c;其中包含了许多供应链金融方面的典型问题。这些问题很有分享的价值&#xff0c;大家也可以先自己独立思考一下&a…

Chromium cookies数据存储位置介绍c++

一、cookies数据库存储位置&#xff1a; C:\Users\Administrator\AppData\Local\Chromium\User Data\Default\Network\Cookies 二 、数据库操作类&#xff1a; net\extras\sqlite\sqlite_persistent_cookie_store.cc net\extras\sqlite\sqlite_persistent_cookie_store.h …

C#读取和写入txt文档(在unity中示例)

本篇内容简单介绍如何在c#中内容读取和写入txt文档 注意&#xff1a;先在Unity的StreamingAssets文件夹中创建一个txt文档 一、读取txt 1.1全部一起读取 private void ReadText01() {string filePath Path.Combine(Application.streamingAssetsPath, "testTXT.txt&qu…

[Java基础] 基本数据类型

[Java基础] 运算符 ​​​​​​​[Java基础] Java HashMap 的数据结构和底层原理 目录 Java基本数据类型 byte short int long float double char boolean 存在的一些坑 最佳实践 常见面试题 Java有哪些基本数据类型&#xff1f; 各基本数据类型所占的内存空间…

Spring 和 javaEE的关系

我的理解&#xff1a; 相当于其实只用javaee的规范其实已经可以直接写后端系统了。但是Spring集成扩展了javaee&#xff0c;提供了一套更方便好用的编程规范&#xff0c;可以更高效便捷的写后端系统。 具体介绍&#xff1a; Java EE&#xff08;现在称为 Jakarta EE&am…

003 Springboot操作RabbitMQ

Springboot整合RabbitMQ 文章目录 Springboot整合RabbitMQ1.pom依赖2.yml配置3.配置队列、交换机方式一&#xff1a;直接通过配置类配置bean方式二&#xff1a;消息监听通过注解配置 4.编写消息监听发送测试5.其他类型交换机配置1.FanoutExchange2.TopicExchange3.HeadersExcha…