Vue + Element UI 实现权限管理系统 前端篇(十四):菜单功能实现菜

Vue + Element UI 实现权限管理系统 前端篇(十四):菜单功能实现 

菜单功能实现

菜单接口封装

菜单管理是一个对菜单树结构的增删改查操作。

提供一个菜单查询接口,查询整颗菜单树形结构。

http/modules/menu.js 添加 findMenuTree 接口。

复制代码

import axios from '../axios'/* * 菜单管理模块*/// 保存
export const save = (data) => {return axios({url: '/menu/save',method: 'post',data})
}
// 删除
export const batchDelete = (data) => {return axios({url: '/menu/delete',method: 'post',data})
}
// 查找导航菜单树
export const findNavTree = (params) => {return axios({url: '/menu/findNavTree',method: 'get',params})
}
// 查找导航菜单树
export const findMenuTree = () => {return axios({url: '/menu/findMenuTree',method: 'get'})
}

复制代码

菜单管理界面

菜单管理界面是使用封装的表格树组件显示菜单结构,并提供增删改查的功能。

Menu.vue

复制代码

<template><div class="container" style="width:99%;margin-top:-25px;"><!--工具栏--><div class="toolbar" style="float:left;padding-top:10px;padding-left:15px;"><el-form :inline="true" :model="filters" :size="size"><el-form-item><el-input v-model="filters.name" placeholder="名称"></el-input></el-form-item><el-form-item><kt-button label="查询" perms="sys:menu:view" type="primary" @click="findTreeData(null)"/></el-form-item><el-form-item><kt-button label="新增" perms="sys:menu:add" type="primary" @click="handleAdd"/></el-form-item></el-form></div><!--表格树内容栏--><el-table :data="tableTreeDdata" stripe size="mini" style="width: 100%;"v-loading="loading" element-loading-text="拼命加载中"><el-table-columnprop="id" header-align="center" align="center" width="80" label="ID"></el-table-column><table-tree-column prop="name" header-align="center" treeKey="id" width="150" label="名称"></table-tree-column><el-table-column header-align="center" align="center" label="图标"><template slot-scope="scope"><i :class="scope.row.icon || ''"></i></template></el-table-column><el-table-column prop="type" header-align="center" align="center" label="类型"><template slot-scope="scope"><el-tag v-if="scope.row.type === 0" size="small">目录</el-tag><el-tag v-else-if="scope.row.type === 1" size="small" type="success">菜单</el-tag><el-tag v-else-if="scope.row.type === 2" size="small" type="info">按钮</el-tag></template></el-table-column><el-table-column prop="parentName" header-align="center" align="center" width="120" label="上级菜单"></el-table-column><el-table-columnprop="url" header-align="center" align="center" width="150" :show-overflow-tooltip="true" label="菜单URL"></el-table-column><el-table-columnprop="perms" header-align="center" align="center" width="150" :show-overflow-tooltip="true" label="授权标识"></el-table-column><el-table-columnprop="orderNum" header-align="center" align="center" label="排序"></el-table-column><el-table-columnfixed="right" header-align="center" align="center" width="150" label="操作"><template slot-scope="scope"><kt-button label="修改" perms="sys:menu:edit" @click="handleEdit(scope.row)"/><kt-button label="删除" perms="sys:menu:delete" type="danger" @click="handleDelete(scope.row)"/></template></el-table-column></el-table><!-- 新增修改界面 --><el-dialog :title="!dataForm.id ? '新增' : '修改'" width="40%" :visible.sync="dialogVisible" :close-on-click-modal="false"><el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="submitForm()" label-width="80px" :size="size" style="text-align:left;"><el-form-item label="菜单类型" prop="type"><el-radio-group v-model="dataForm.type"><el-radio v-for="(type, index) in menuTypeList" :label="index" :key="index">{{ type }}</el-radio></el-radio-group></el-form-item><el-form-item :label="menuTypeList[dataForm.type] + '名称'" prop="name"><el-input v-model="dataForm.name" :placeholder="menuTypeList[dataForm.type] + '名称'"></el-input></el-form-item><el-form-item label="上级菜单" prop="parentName"><popup-tree-input :data="popupTreeData" :props="popupTreeProps" :prop="dataForm.parentName==null?'根节点':dataForm.parentName" :nodeKey="''+dataForm.parentId" :currentChangeHandle="handleTreeSelectChange"></popup-tree-input></el-form-item><el-form-item v-if="dataForm.type === 1" label="菜单路由" prop="url"><el-input v-model="dataForm.url" placeholder="菜单路由"></el-input></el-form-item><el-form-item v-if="dataForm.type !== 0" label="授权标识" prop="perms"><el-input v-model="dataForm.perms" placeholder="如: sys:user:add, sys:user:edit, sys:user:delete"></el-input></el-form-item><el-form-item v-if="dataForm.type !== 2" label="排序编号" prop="orderNum"><el-input-number v-model="dataForm.orderNum" controls-position="right" :min="0" label="排序编号"></el-input-number></el-form-item><el-form-item v-if="dataForm.type !== 2" label="菜单图标" prop="icon"><el-row><el-col :span="22"><!-- <el-popoverref="iconListPopover"placement="bottom-start"trigger="click"popper-class="mod-menu__icon-popover"><div class="mod-menu__icon-list"><el-buttonv-for="(item, index) in dataForm.iconList":key="index"@click="iconActiveHandle(item)":class="{ 'is-active': item === dataForm.icon }"><icon-svg :name="item"></icon-svg></el-button></div></el-popover> --><el-input v-model="dataForm.icon" v-popover:iconListPopover :readonly="true" placeholder="菜单图标名称(如:fa fa-home fa-lg)" class="icon-list__input"></el-input></el-col><el-col :span="2" class="icon-list__tips"><fa-icon-tooltip /></el-col></el-row></el-form-item></el-form><span slot="footer" class="dialog-footer"><el-button :size="size"  @click="dialogVisible = false">取消</el-button><el-button :size="size"  type="primary" @click="submitForm()">确定</el-button></span></el-dialog></div>
</template><script>
import KtButton from "@/views/Core/KtButton"
import TableTreeColumn from '@/views/Core/TableTreeColumn'
import PopupTreeInput from "@/components/PopupTreeInput"
import FaIconTooltip from "@/components/FaIconTooltip"
export default {components:{PopupTreeInput,KtButton,TableTreeColumn,FaIconTooltip},data() {return {size: 'small',loading: false,filters: {name: ''},tableTreeDdata: [],dialogVisible: false,menuTypeList: ['目录', '菜单', '按钮'],dataForm: {id: 0,type: 1,name: '',parentId: 0,parentName: '',url: '',perms: '',orderNum: 0,icon: '',iconList: []},dataRule: {name: [{ required: true, message: '菜单名称不能为空', trigger: 'blur' }],parentName: [{ required: true, message: '上级菜单不能为空', trigger: 'change' }]},popupTreeData: [],popupTreeProps: {label: 'name',children: 'children'}}},methods: {// 获取数据findTreeData: function () {this.loading = truethis.$api.menu.findMenuTree().then((res) => {this.tableTreeDdata = res.datathis.popupTreeData = this.getParentMenuTree(res.data)this.loading = false})},// 获取上级菜单树getParentMenuTree: function (tableTreeDdata) {let parent = {parentId: -1,name: '根节点',children: tableTreeDdata}return [parent]},// 显示新增界面handleAdd: function () {this.dialogVisible = truethis.dataForm = {id: 0,type: 1,typeList: ['目录', '菜单', '按钮'],name: '',parentId: 0,parentName: '',url: '',perms: '',orderNum: 0,icon: '',iconList: []}},// 显示编辑界面handleEdit: function (row) {this.dialogVisible = trueObject.assign(this.dataForm, row);},// 删除handleDelete (row) {this.$confirm('确认删除选中记录吗?', '提示', {type: 'warning'}).then(() => {let params = this.getDeleteIds([], row)this.$api.menu.batchDelete(params).then( res => {this.findTreeData()this.$message({message: '删除成功', type: 'success'})})})},// 获取删除的包含子菜单的id列表getDeleteIds (ids, row) {ids.push({id:row.id})if(row.children != null) {for(let i=0, len=row.children.length; i<len; i++) {this.getDeleteIds(ids, row.children[i])}}return ids},// 菜单树选中handleTreeSelectChange (data, node) {this.dataForm.parentId = data.idthis.dataForm.parentName = data.name},// 图标选中iconActiveHandle (iconName) {this.dataForm.icon = iconName},// 表单提交submitForm () {this.$refs['dataForm'].validate((valid) => {if (valid) {this.$confirm('确认提交吗?', '提示', {}).then(() => {this.editLoading = truelet params = Object.assign({}, this.dataForm)this.$api.menu.save(params).then((res) => {if(res.code == 200) {this.$message({ message: '操作成功', type: 'success' })} else {this.$message({message: '操作失败, ' + res.msg, type: 'error'})}this.editLoading = falsethis.$refs['dataForm'].resetFields()this.dialogVisible = falsethis.findTreeData()})})}})}},mounted() {this.findTreeData()}
}
</script><style scoped></style>

复制代码

其中对表格树组件进行了简单的封装。

views/Core/TableTreeColumn.vue

复制代码

<template><el-table-column :prop="prop" v-bind="$attrs"><template slot-scope="scope"><span @click.prevent="toggleHandle(scope.$index, scope.row)" :style="childStyles(scope.row)"><i :class="iconClasses(scope.row)" :style="iconStyles(scope.row)"></i>{{ scope.row[prop] }}</span></template></el-table-column>
</template><script>import isArray from 'lodash/isArray'export default {name: 'table-tree-column',props: {prop: {type: String},treeKey: {type: String,default: 'id'},parentKey: {type: String,default: 'parentId'},levelKey: {type: String,default: 'level'},childKey: {type: String,default: 'children'}},methods: {childStyles (row) {return { 'padding-left': (row[this.levelKey] * 25) + 'px' }},iconClasses (row) {return [ !row._expanded ? 'el-icon-caret-right' : 'el-icon-caret-bottom' ]},iconStyles (row) {return { 'visibility': this.hasChild(row) ? 'visible' : 'hidden' }},hasChild (row) {return (isArray(row[this.childKey]) && row[this.childKey].length >= 1) || false},// 切换处理toggleHandle (index, row) {if (this.hasChild(row)) {var data = this.$parent.store.states.data.slice(0)data[index]._expanded = !data[index]._expandedif (data[index]._expanded) {data = data.splice(0, index + 1).concat(row[this.childKey]).concat(data)} else {data = this.removeChildNode(data, row[this.treeKey])}this.$parent.store.commit('setData', data)this.$nextTick(() => {this.$parent.doLayout()})}},// 移除子节点removeChildNode (data, parentId) {var parentIds = isArray(parentId) ? parentId : [parentId]if (parentId.length <= 0) {return data}var ids = []for (var i = 0; i < data.length; i++) {if (parentIds.indexOf(data[i][this.parentKey]) !== -1 && parentIds.indexOf(data[i][this.treeKey]) === -1) {ids.push(data.splice(i, 1)[0][this.treeKey])i--}}return this.removeChildNode(data, ids)}}}
</script>

复制代码

测试效果

最终测试效果下图所示。

源码下载

后端:kitty: 基于Spring Boot、Spring Cloud、Vue.js 、Element UI实现,采用前后端分离架构的权限管理系统,JAVA快速开发平台。

前端:kitty-ui: Kitty 前端,基于 Vue + Element 实现的权限管理系统。

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

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

相关文章

VsCode搭建Java开发环境 vscode搭建java开发环境 vscode springboot 搭建springboot

VsCode搭建Java开发环境 vscode搭建java开发环境 vscode springboot 搭建springboot VsCode java开发截图1、安装Java 环境相关插件2、安装 Spring 插件3、安装 Mybatis 插件第一个 vsc-mybatis第二个 mybatisX 4、安装Maven环境4.1、安装Maven环境4.2、VsCode配置Maven环境 5、…

Excel_VBA程序文件的加密及解密说明

VBA应用技巧及疑难解答 Excel_VBA程序文件的加密及解密 在您看到这个文档的时候&#xff0c;请和我一起念&#xff1a;“唵嘛呢叭咪吽”“唵嘛呢叭咪吽”“唵嘛呢叭咪吽”&#xff0c;为自己所得而感恩&#xff0c;为付出者赞叹功德。 本不想分享之一技术&#xff0c;但众多学…

智慧公厕是将数据、技术、业务深度融合的公共厕所敏捷化“操作系统”

文明社会的进步离不开公共设施的不断创新和提升。而在这些公共设施中&#xff0c;公共厕所一直是一个备受关注和改善的领域。近年来&#xff0c;随着智慧城市建设的推进&#xff0c;智慧公厕成为了城市管理的重要一环。智慧公厕不仅仅是为公众提供方便和舒适的便利设施&#xf…

TVC广告片存在的商业价值

TVC广告片是商业广告中最常见和重要的形式之一&#xff0c;具有广泛的覆盖面和影响力。宣传片是一种用于宣传推广产品、服务或活动的短片或视频。相比宣传片&#xff0c;TVC广告片可能存在一些弊端。接下来由深圳TVC广告片制作公司老友记小编从以下几个方面浅析一些可能的弊端&…

1998-2014年工业企业数据库和绿色专利匹配

1998-2014年工业企业数据库绿色专利匹配 1、时间&#xff1a;1998-2014年 2、样本量&#xff1a;470万 3、来源&#xff1a;工业企业数据库、国家知识产权局、WIPO 4、指标&#xff1a; 企业匹配唯一标识码、组织机构代码、企业名称、年份、法定代表人、法定代表人职务、行…

华为云云服务器评测|华为云耀云L搭建zerotier服务测试

0. 环境 - Win10 - 云耀云L服务器 1. 安装docker 检查yum源&#xff0c;本EulerOS的源在这里&#xff1a; cd /etc/yum.repos.d 更新源 yum makecache 安装 yum install -y docker-engine 运行测试 docker run hello-world 2. 运行docker镜像 默认配…

Android基础之Activity生命周期

Activity是Android四大组件之一、称为之首也恰如其分。 Activity直接翻译为中文叫活动。在Android系统中Activity就是我看到的一个完整的界面。 界面中看到的TextView(文字&#xff09;、Button(按钮)、ImageView&#xff08;图片&#xff09;都是需要Activity来承载的。 总…

文件包含漏洞学习小结

目录 一、介绍 二、常见文件包含函数 三、文件包含漏洞代码举例分析 四、文件包含漏洞利用方式 4.1 本地文件包含 1、读取敏感文件 2、文件包含可运行的php代码 ①包含图片码 ②包含日志文件 ③包含环境变量getshell ④临时文件包含 ⑤伪协议 4.2 远程文件包含 4.…

部署Django报错-requires SQLite 3.8.3 or higher

记一次CentOS7部署Django项目时的报错 问题出现 在部署测试环境时&#xff0c;有需要用到一个python的后端服务&#xff0c;要部署到测试环境中去 心想这不是so easy吗&#xff0c;把本地调试时使用的python版本及Django版本在服务器上对应下载好&#xff0c;然后直接执行命…

MyBatis基础操作

准备工作&#xff1a; 准备数据库表emp -- 部门管理 create table dept(id int unsigned primary key auto_increment comment 主键ID,name varchar(10) not null unique comment 部门名称,create_time datetime not null comment 创建时间,update_time datetime not null com…

axios封装/基础配置

步骤&#xff1a;装包 -> 封装axios实例 ->调用实例发送请求 1. 装包 npm install axios 2. 封装 axios基础配置 // axios实例封装 import axios from axios// 创建axios实例 const axiosInstance axios.create({baseURL:http://xxx.net, //基地址timeout:5000 //…

不用额外插件?RunnerGo内置压测模式怎么选

我们在做性能测试时需要根据性能需求配置不同的压测模式如&#xff1a;阶梯模式。使用jmeter时我们需要安装插件来配置测试模式&#xff0c;为了方便用户使用&#xff0c;RunnerGo内嵌了压测模式这一选项&#xff0c;今天给大家介绍一下RunnerGo的几种压测模式和怎么根据性能需…

Kafka核心原理第二弹——更新中

架构原理 一、高吞吐机制&#xff1a;Batch打包、缓冲区、acks 1. Kafka Producer怎么把消息发送给Broker集群的&#xff1f; 需要指定把消息发送到哪个topic去 首先需要选择一个topic的分区&#xff0c;默认是轮询来负载均衡&#xff0c;但是如果指定了一个分区key&#x…

2023全国大学生数学建模竞赛C题思路模型代码来啦

目录 一.选题建议先发布&#xff0c;思路模型代码论文第一时间更新&#xff0c;获取见文末名片 二.选题建议&#xff0c;后续思路代码论文 C 题 蔬菜类商品的自动定价与补货决策 各题分析 获取完整思路代码见此处名片 一.选题建议先发布&#xff0c;思路模型代码论文第一时…

深入了解苹果证书及其分类,提升iOS应用开发效率

目录 1. 企业证书 2. 开发者证书 开发证书&#xff1a; 发布证书&#xff1a; 3. 推送证书 4. 分发证书 5. MDM证书 摘要&#xff1a;本文将详细介绍苹果证书的作用及分类&#xff0c;包括企业证书、开发者证书、推送证书、分发证书和MDM证书&#xff0c;帮助开发者了解…

webrtc的FULL ICE和Lite ICE

1、ICE的模式 分为FULL ICE和Lite ICE&#xff1a; FULL ICE:是双方都要进行连通性检查&#xff0c;完成的走一遍流程。 Lite ICE: 在FULL ICE和Lite ICE互通时&#xff0c;只需要FULL ICE一方进行连通性检查&#xff0c; Lite一方只需回应response消息。这种模式对于部署在公网…

数学建模--二次规划型的求解的Python实现

目录 1.算法流程简介 2.算法核心代码 3.算法效果展示 1.算法流程简介 #二次规划模型 #二次规划我们需要用到函数:Cvxopt.solvers.qp(P,q,G,h,A,b) #首先解决二次规划问题和解决线性规划问题的流程差不多 """ 求解思路如下: 1.针对给定的代求式,转化成标准式…

简明SQL截断和偏移指南:掌握LIMIT实现数据筛选

以下是用到的表。 截断 LIMIT 用于限制查询结果返回的行数&#xff0c;即最多返回多少行数据。 例如&#xff0c;返回前两行数据。 例如&#xff0c;从第二个数据开始返回两条数据&#xff08;从0开始计算&#xff09;。 偏移 OFFSET 用于指定查询结果的起始位置&#xff0c…

PHP8中查询数组中指定元素-PHP8知识详解

php是使用最广泛的web编程语言&#xff0c;数组是一个数据集合&#xff0c;数组是一种非常常用的数据类型。在操作数组时&#xff0c;有时我们需要查询数组中是否有某个指定元素。在实际的程序开发中&#xff0c;我们用到了下列方法来查询数组中指定的元素&#xff1a;使用arra…

matplotlib 使用

import matplotlib.pyplot as plt %matplotlib inlineplt.figure()#创建一个画布 plt.plot([1, 0, 9], [4, 5, 6])#点数据&#xff0c;横坐标&#xff0c;纵坐标&#xff0c;相当于&#xff08;1&#xff0c;4&#xff09;&#xff08;0&#xff0c;5&#xff09;&#xff08;9…