权限管理系统-0.4.1

5.4 权限管理前端开发

5.4.1 src/components

新建ParentView文件夹,并在文件夹中新建index.vue文件。
在这里插入图片描述
并在index.vue中加入以下内容:

<template><router-view />
</template>

5.4.2 layout/components/Sidebar/index.vue

    routes() {// return this.$router.options.routes//新增内容return this.$router.options.routes.concat(global.antRouter)},

5.4.3 router

在index.js中只留以下内容:

import Vue from 'vue'
import Router from 'vue-router'Vue.use(Router)/* Layout */
import Layout from '@/layout'/*** Note: sub-menu only appear when route children.length >= 1* Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html** hidden: true                   if set true, item will not show in the sidebar(default is false)* alwaysShow: true               if set true, will always show the root menu*                                if not set alwaysShow, when item has more than one children route,*                                it will becomes nested mode, otherwise not show the root menu* redirect: noRedirect           if set noRedirect will no redirect in the breadcrumb* name:'router-name'             the name is used by <keep-alive> (must set!!!)* meta : {roles: ['admin','editor']    control the page roles (you can set multiple roles)title: 'title'               the name show in sidebar and breadcrumb (recommend set)icon: 'svg-name'/'el-icon-x' the icon show in the sidebarbreadcrumb: false            if set false, the item will hidden in breadcrumb(default is true)activeMenu: '/example/list'  if set path, the sidebar will highlight the path you set}*//*** constantRoutes* a base page that does not have permission requirements* all roles can be accessed*/
export const constantRoutes = [{path: '/login',component: () => import('@/views/login/index'),hidden: true},{path: '/',component: Layout,redirect: '/dashboard',children: [{path: 'dashboard',name: 'Dashboard',component: () => import('@/views/dashboard/index'),meta: { title: 'Dashboard', icon: 'dashboard' }}]}// {//   path: '/system',//   component: Layout,//   meta: {//     title: '系统管理',//     icon: 'el-icon-s-tools'//   },//   alwaysShow: true,//   children: [//     {//       name: 'sysUser',//       path: 'sysUser',//       component: () => import('@/views/system/sysUser/list'),//       meta: {//         title: '用户管理',//         icon: 'el-icon-s-custom'//       },//     },//     {//       path: 'sysRole',//       component: () => import('@/views/system/sysRole/list'),//       meta: {//         title: '角色管理',//         icon: 'el-icon-s-help'//       },//     },//     {//       name: 'sysMenu',//       path: 'sysMenu',//       component: () => import('@/views/system/sysMenu/list'),//       meta: {//         title: '菜单管理',//         icon: 'el-icon-s-unfold'//       },//     },//     {//       path: 'assignAuth',//       component: () => import('@/views/system/sysMenu/assignAuth'),//       meta: {//         activeMenu: '/system/sysRole',//         title: '角色授权'//       },//       hidden: true,//     }//   ]// },// {//   path: '/form',//   component: Layout,//   children: [//     {//       path: 'index',//       name: 'Form',//       component: () => import('@/views/form/index'),//       meta: { title: 'Form', icon: 'form' }//     }//   ]// },// {//   path: '/nested',//   component: Layout,//   redirect: '/nested/menu1',//   name: 'Nested',//   meta: {//     title: 'Nested',//     icon: 'nested'//   },//   children: [//     {//       path: 'menu1',//       component: () => import('@/views/nested/menu1/index'), // Parent router-view//       name: 'Menu1',//       meta: { title: 'Menu1' },//       children: [//         {//           path: 'menu1-1',//           component: () => import('@/views/nested/menu1/menu1-1'),//           name: 'Menu1-1',//           meta: { title: 'Menu1-1' }//         },//         {//           path: 'menu1-2',//           component: () => import('@/views/nested/menu1/menu1-2'),//           name: 'Menu1-2',//           meta: { title: 'Menu1-2' },//           children: [//             {//               path: 'menu1-2-1',//               component: () => import('@/views/nested/menu1/menu1-2/menu1-2-1'),//               name: 'Menu1-2-1',//               meta: { title: 'Menu1-2-1' }//             },//             {//               path: 'menu1-2-2',//               component: () => import('@/views/nested/menu1/menu1-2/menu1-2-2'),//               name: 'Menu1-2-2',//               meta: { title: 'Menu1-2-2' }//             }//           ]//         },//         {//           path: 'menu1-3',//           component: () => import('@/views/nested/menu1/menu1-3'),//           name: 'Menu1-3',//           meta: { title: 'Menu1-3' }//         }//       ]//     },//     {//       path: 'menu2',//       component: () => import('@/views/nested/menu2/index'),//       name: 'Menu2',//       meta: { title: 'menu2' }//     }//   ]// },// {//   path: 'external-link',//   component: Layout,//   children: [//     {//       path: 'https://panjiachen.github.io/vue-element-admin-site/#/',//       meta: { title: 'External Link', icon: 'link' }//     }//   ]// },// // 404 page must be placed at the end !!!// { path: '*', redirect: '/404', hidden: true }
]const createRouter = () => new Router({// mode: 'history', // require service supportscrollBehavior: () => ({ y: 0 }),routes: constantRoutes
})const router = createRouter()// Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465
export function resetRouter() {const newRouter = createRouter()router.matcher = newRouter.matcher // reset router
}export default router

新建_import_development.js 和_import_production.js 两个文件。

//_import_development.js
module.exports = file => require('@/views/' + file + '.vue').default//_import_production.js
module.exports = file => () => import('@/views/' + file + '.vue')

5.4.4 store/modules/user.js

const getDefaultState = () => {return {token: getToken(),name: '',avatar: '',buttons: [],//新增menus: ''//新增}
}
const mutations = {RESET_STATE: (state) => {Object.assign(state, getDefaultState())},SET_TOKEN: (state, token) => {state.token = token},SET_NAME: (state, name) => {state.name = name},SET_AVATAR: (state, avatar) => {state.avatar = avatar},//新增SET_BUTTONS: (state, buttons) => {state.buttons = buttons},//新增SET_MENUS: (state, menus) => {state.menus = menus}
}
  // get user infogetInfo({ commit, state }) {return new Promise((resolve, reject) => {getInfo(state.token).then(response => {const { data } = responseif (!data) {return reject('Verification failed, please Login again.')}const { name, avatar } = datacommit('SET_NAME', name)commit('SET_AVATAR', avatar)//新增commit('SET_BUTTONS', data.buttons)//新增commit('SET_MENUS', data.routers)resolve(data)}).catch(error => {reject(error)})})},

5.4.5 store/getter.js

const getters = {sidebar: state => state.app.sidebar,device: state => state.app.device,token: state => state.user.token,avatar: state => state.user.avatar,name: state => state.user.name,//新增buttons: state => state.user.buttons,//新增menus: state => state.user.menus
}
export default getters

5.4.6 utils

在utils中新建文件夹btn-permission.js。

//btn-permission.js
import store from '@/store'/*** 判断当前用户是否有此按钮权限* 按钮权限字符串 permission*/
export default function hasBtnPermission(permission) {// 得到当前用户的所有按钮权限const myBtns = store.getters.buttons// 如果指定的功能权限在myBtns中, 返回true ==> 这个按钮就会显示, 否则隐藏return myBtns.indexOf(permission) !== -1
}

修改request.js:

  config => {// do something before request is sentif (store.getters.token) {// let each request carry token// ['X-Token'] is a custom headers key// please modify it according to the actual situation//将x-token修改为tokenconfig.headers['token'] = getToken()}return config},

5.4.7 views/login/index.vue

用户名和密码只检查长度:

    const validateUsername = (rule, value, callback) => {if (value.length < 4) {callback(new Error('Please enter the correct user name'))} else {callback()}}
    const validatePassword = (rule, value, callback) => {if (value.length < 6) {callback(new Error('The password can not be less than 6 digits'))} else {callback()}}

5.4.8 main.js

// 新增
import hasBtnPermission from '@/utils/btn-permission'
Vue.prototype.$hasBP = hasBtnPermissionimport formCreate from '@form-create/element-ui'
import FcDesigner from '@form-create/designer'
Vue.use(formCreate)
Vue.use(FcDesigner)

5.4.9 permission.js

替换为下面的内容:

import router from './router'
import store from './store'
import { getToken } from '@/utils/auth'
import { Message } from 'element-ui'
import NProgress from 'nprogress' // 水平进度条提示: 在跳转路由时使用
import 'nprogress/nprogress.css' // 水平进度条样式
import getPageTitle from '@/utils/get-page-title' // 获取应用头部标题的函数
import Layout from '@/layout'
import ParentView from '@/components/ParentView'
const _import = require('./router/_import_' + process.env.NODE_ENV) // 获取组件的方法NProgress.configure({ showSpinner: false }) // NProgress Configuration
const whiteList = ['/login'] // no redirect whitelist
router.beforeEach(async(to, from, next) => {NProgress.start()// set page titledocument.title = getPageTitle(to.meta.title)// determine whether the user has logged inconst hasToken = getToken()if (hasToken) {if (to.path === '/login') {// if is logged in, redirect to the home pagenext({ path: '/' })NProgress.done()} else {const hasGetUserInfo = store.getters.nameif (hasGetUserInfo) {next()} else {try {// get user infoawait store.dispatch('user/getInfo')// 请求获取用户信息if (store.getters.menus.length < 1) {global.antRouter = []next()}const menus = filterAsyncRouter(store.getters.menus)// 1.过滤路由console.log(menus)router.addRoutes(menus) // 2.动态添加路由const lastRou = [{ path: '*', redirect: '/404', hidden: true }]router.addRoutes(lastRou)global.antRouter = menus // 3.将路由数据传递给全局变量,做侧边栏菜单渲染工作next({...to,replace: true})// next()} catch (error) {// remove token and go to login page to re-loginconsole.log(error)await store.dispatch('user/resetToken')Message.error(error || 'Has Error')next(`/login?redirect=${to.path}`)NProgress.done()}}}} else { /* has no token*/if (whiteList.indexOf(to.path) !== -1) {// in the free login whitelist, go directlynext()} else {// other pages that do not have permission to access are redirected to the login page.next(`/login?redirect=${to.path}`)NProgress.done()}}
})router.afterEach(() => { // finish progress barNProgress.done()
}) // // 遍历后台传来的路由字符串,转换为组件对象
function filterAsyncRouter(asyncRouterMap) {const accessedRouters = asyncRouterMap.filter(route => {if (route.component) {if (route.component === 'Layout') {route.component = Layout} else if (route.component === 'ParentView') {route.component = ParentView} else {try {route.component = _import(route.component)// 导入组件} catch (error) {debuggerconsole.log(error)route.component = _import('dashboard/index')// 导入组件}}}if (route.children && route.children.length > 0) {route.children = filterAsyncRouter(route.children)} else {delete route.children}return true})return accessedRouters
}

5.4.10 按钮权限控制

在写按钮时按照如下写法即可:

<el-button type="danger" icon="el-icon-delete" size="mini" @click="removeDataById(scope.row.id)" title="删除" :disable="$hasBP('bnt.sysUser.remove')===false"/>

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

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

相关文章

金蝶云星空对接打通阿里宜搭逐个单据查询接口与新增表单实例接口

金蝶云星空对接打通阿里宜搭逐个单据查询接口与新增表单实例接口 数据源平台:金蝶云星空 金蝶K/3Cloud结合当今先进管理理论和数十万家国内客户最佳应用实践&#xff0c;面向事业部制、多地点、多工厂等运营协同与管控型企业及集团公司&#xff0c;提供一个通用的ERP服务平台。…

网络编程:网络编程基础

一、网络发展 1.TCP/IP两个协议阶段 TCP/IP协议已分成了两个不同的协议&#xff1a; 用来检测网络传输中差错的传输控制协议TCP 专门负责对不同网络进行2互联的互联网协议IP 2.网络体系结构 OSI体系口诀&#xff1a;物链网输会示用 2.1网络体系结构概念 每一层都有自己独…

邮件营销案例分析:哪些因素决定营销效果?

邮件营销案例的关键要素&#xff1f;电子邮件营销案例有哪些&#xff1f; 邮件营销一直是一种重要的推广手段。然而&#xff0c;邮件营销的效果并非一蹴而就&#xff0c;它需要多方面的因素共同作用。AokSend将通过一系列邮件营销案例的分析&#xff0c;探讨哪些因素决定了邮件…

海淘网站#跨境电商#淘宝数据#建站网站#前端源码❀

代购业务近年兴起的一种购物模式&#xff0c;是帮国外客户购买中国商品。主要通过外贸代购模式&#xff0c;把淘宝、天猫等电商平台的全站商品通过API接入到你的网站上&#xff0c;瞬间就可以架设一个有数亿产品的大型网上商城&#xff0c;而且可以把这些中文的商品全部自动翻译…

商家转账到零钱转账场景怎么选择

商家转账到零钱是什么&#xff1f; 商家转账到零钱功能整合了企业付款到零钱和批量转账到零钱&#xff0c;支持批量对外转账&#xff0c;操作便捷。如果你的应用场景是单付款&#xff0c;体验感和企业付款到零钱基本没差别。 商家转账到零钱的使用场景有哪些&#xff1f; 商…

【强化学习2--基于策略梯度的方法】

文章目录 深度强化学习---基于策略梯度的方法为什么要用策略梯度方法&#xff1f;策略梯度方法的优势策略梯度定理REINFORCEActor-CriticA2C:Advantage Actor-CriticPPO总结 深度强化学习—基于策略梯度的方法 本篇主要介绍单智能体强化学习——基于策略梯度的方法。 为什么要…

如何利用百度SEO优化技巧将排到首页

拥有一个成功的网站对于企业和个人来说是至关重要的&#xff0c;在当今数字化的时代。在互联网上获得高流量和优质的访问者可能并不是一件容易的事情&#xff0c;然而。一个成功的SEO战略可以帮助你实现这一目标。需要一些特定的技巧和策略、但要在百度搜索引擎中获得较高排名。…

手写简易操作系统(六)--内存分页

前情提要 上一节我们讲到了获取物理内存&#xff0c;这节我们将开启内存分页 一、内存分页的作用 内存分页是一种操作系统和硬件协同工作的机制&#xff0c;用于将物理内存分割成固定大小的页面&#xff08;通常为4KB&#xff09;并将虚拟内存空间映射到这些页面上。内存分页…

【更新】上市公司“宽带中国”战略数据集(2000-2022年)

参照李万利&#xff08;2022&#xff09;、薛成&#xff08;2020&#xff09;等人的做法&#xff0c;根据企业所在城市入选“宽带中国”试点战略的批次构建DID。如果样本期间内企业所在城市被评选为“宽带中国” 试点城市&#xff0c;则该地区企业样本在入选当年及以后年份取1&…

打卡学习kubernetes——了解k8s基本概念

目录 1 Container 2 Pod 3 Node 4 Namespace 5 Service 6 Label 7 Annotations 8 Volume 1 Container Container(容器)是一种便携式、轻量级的操作系统级虚拟化技术。它使用namespace隔离不同的软件运行环境&#xff0c;并通过镜像自包含软件的运行环境&#xff0c;从而…

Focal and Global Knowledge Distillation forDetectors

摘要 文章指出&#xff0c;在目标检测中&#xff0c;教师和学生在不同领域的特征差异很大&#xff0c;尤其是在前景和背景中。如果我们 平等地蒸馏它们&#xff0c;特征图之间的不均匀差异将对蒸馏产生负面影响。因此&#xff0c;我们提出了局部和全局蒸馏。局部蒸馏分离前景和…

【Spring Boot系列】快速上手 Spring Boot

&#x1f49d;&#x1f49d;&#x1f49d;欢迎来到我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您的想法和见解。 推荐:kwan 的首页,持续学…

macOS - 获取硬件设备信息

文章目录 1、CPU获取方式 一&#xff1a; system_profiler获取方式二&#xff1a;sysctl&#xff0c; machdepmachdep 2、内存3、硬盘4、显卡5、声卡6、光驱7、系统序列号8、型号标识符9、UUID 等信息 10. 计算机名称 1、CPU 获取方式 一&#xff1a; system_profiler % syst…

深信服技术认证“SCCA-C”划重点:深信服应用交付AD

为帮助大家更加系统化地学习云计算知识&#xff0c;高效通过云计算工程师认证&#xff0c;深信服特推出“SCCA-C认证备考秘笈”&#xff0c;共十期内容。“考试重点”内容框架&#xff0c;帮助大家快速get重点知识 划重点来啦 *点击图片放大展示 深信服云计算认证&#xff08;S…

中国工程精英智创数字工厂——2023纵览基础设施大会暨光辉大奖赛观察 (下)

中国工程精英智创数字工厂 ——2023纵览基础设施大会暨光辉大奖赛观察 &#xff08;下&#xff09; 吴付标 中国制造的尽头是智能化、智慧化&#xff0c;这一趋势正在加速前进。2022年&#xff0c;中国以50座达沃斯论坛盖章认证的“灯塔工厂”数量冠绝全球&#xff0c;而“数…

活动预告:如何培养高质量应用型医学人才?

在大数据时代与“新医科”建设的背景下&#xff0c;掌握先进的医学数据处理技术成为了医学研究与应用的重要技能。 为了更好地培养社会所需要的高质量应用型医学人才&#xff0c;许多高校已经在广泛地开展面向医学生的医学数据分析教学工作。 在“课-训-赛”育人才系列活动的…

详解Python中%r和%s的区别及用法

首先看下面的定义&#xff1a; %r用rper()方法处理对象 %s用str()方法处理对象 函数str() 用于将值转化为适于人阅读的形式&#xff0c;而repr() 转化为供解释器读取的形式&#xff08;如果没有等价的语法&#xff0c;则会发生SyntaxError 异常&#xff09; 某对象没有适于人…

面试常问:为什么 Vite 速度比 Webpack 快?

前言 最近作者在学习 webpack 相关的知识&#xff0c;之前一直对这个问题不是特别了解&#xff0c;甚至讲不出个123....&#xff0c;这个问题在面试中也是常见的&#xff0c;作者在学习的过程当中总结了以下几点&#xff0c;在这里分享给大家看一下&#xff0c;当然最重要的是…

面试六--TCP粘包问题

1.流式传输协议 流式传输协议&#xff08;Streaming Protocol&#xff09;是一种用于在网络上传输数据的通信协议&#xff0c;它允许数据以连续的流的形式进行传输&#xff0c;而不是一次性发送完整的数据包。流式传输协议即协议的内容是像流水一样的字节流&#xff0c;内容与内…

代码随想录day19(2)二叉树:二叉树的最大深度(leetcode104)

题目要求&#xff1a;求出二叉树的最大深度 思路&#xff1a;首先要区分二叉树的高度与深度。二叉树的高度是任一结点到叶子结点的距离&#xff0c;而二叉树的深度指的是任一节点到根节点的距离&#xff08;从1开始&#xff09;。所以求高度使用后序遍历&#xff08;从下往上&…