From 37efa3e1a1a008f3c7312046c7826bb9a0a272b1 Mon Sep 17 00:00:00 2001
From: zhangxiaoxu123 <819527061@qq.com>
Date: 星期五, 15 七月 2022 11:38:37 +0800
Subject: [PATCH] '菜单权限管理功能'
---
utils/jihua.js | 5 ++
components/common/popup-menu/popup-menu.vue | 58 ++++++++++++++++++++++++++++
2 files changed, 62 insertions(+), 1 deletions(-)
diff --git a/components/common/popup-menu/popup-menu.vue b/components/common/popup-menu/popup-menu.vue
index ca109d8..6ac376e 100644
--- a/components/common/popup-menu/popup-menu.vue
+++ b/components/common/popup-menu/popup-menu.vue
@@ -10,6 +10,7 @@
<image src="@/static/menuIcon/menu-home.png" slot="icon" size="32" name="search"/>
</u-cell>
<u-cell
+ v-if="shenqingMenu"
title="鎴戠殑鐢宠"
isLink
url="/pages/my-application/my-application"
@@ -31,6 +32,7 @@
<image src="@/static/menuIcon/menu-havedo.png" slot="icon" size="32" name="search"/>
</u-cell>
<u-cell
+ v-if="rijihuaMenu"
title="鏃ュ彂杩愯鍒�"
isLink
url="/pages/jihua/jihua" style="color:blue"
@@ -61,16 +63,70 @@
// },
data() {
return {
- menuShow:false
+ menuShow:false,
+ rijihuaMenu:false,
+ shenqingMenu:false,
};
},
+ onShow() {
+ alert(111)
+ },
methods: {
+ checkRijihua(data) {
+ let labelArry = []
+ let newObj = data.filter(e => e.label == '鍦伴攢璁¢噺')
+ newObj && newObj.forEach(e => {
+ if(e.children.length > 0) {
+ e.children.forEach(item => {
+ labelArry.push(item.label)
+ })
+ }else{
+ this.rijihuaMenu = false
+ }
+ })
+ if(labelArry.indexOf('姹借溅鏃ュ彂杩愯鍒掔鐞�') > -1) {
+ this.rijihuaMenu = true
+ }else {
+ this.rijihuaMenu = false
+ }
+ },
+ checkShenqing(data) {
+ let labelArry = []
+ let newObj = data.filter(e => e.label == '宸ヤ綔瀹℃壒')
+ newObj && newObj.forEach(e => {
+ if(e.children.length > 0) {
+ e.children.forEach(item => {
+ labelArry.push(item.label)
+ })
+ }else{
+ this.shenqingMenu = false
+ }
+ })
+ if(labelArry.indexOf('鎴戠殑鐢宠') > -1) {
+ this.shenqingMenu = true
+ }else {
+ this.shenqingMenu = false
+ }
+ },
+ menu() {
+ // 鏉冮檺鍒ゆ柇
+ this.$reqGet('menu').then(res => {
+ if(res.data == null) {
+ this.rijihuaMenu = false
+ this.shenqingMenu = false
+ }else {
+ this.checkRijihua(res.data)
+ this.checkShenqing(res.data)
+ }
+ })
+ },
menuClick(){
this.menuShow = !this.menuShow
this.$emit('menuShow',this.menuShow)
},
open() {
console.log('open');
+ this.menu()
},
close() {
this.menuShow = false;
diff --git a/utils/jihua.js b/utils/jihua.js
index 741ad21..3082da2 100644
--- a/utils/jihua.js
+++ b/utils/jihua.js
@@ -23,4 +23,9 @@
url: '/yunxiao/xscarshippingdayplan/setCarNums',
method: 'POST'
},
+ // 鑿滃崟
+ menu: {
+ url: '/admin/menu',
+ method: 'GET'
+ }
}
\ No newline at end of file
--
Gitblit v1.9.1