From d8f5a1fcb8632a9fb51cac9d72fb3bacaa41cbc2 Mon Sep 17 00:00:00 2001
From: long <515897141@qq.com>
Date: 星期四, 08 四月 2021 15:57:49 +0800
Subject: [PATCH] 1.添加mode提示、2.mock模式侧边栏不限制权限全显示

---
 src/layout/components/Sidebar/index.vue |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/layout/components/Sidebar/index.vue b/src/layout/components/Sidebar/index.vue
index 2e67afb..603476b 100644
--- a/src/layout/components/Sidebar/index.vue
+++ b/src/layout/components/Sidebar/index.vue
@@ -23,6 +23,7 @@
 import Logo from './Logo'
 import SidebarItem from './SidebarItem'
 import variables from '@/styles/variables.scss'
+var isMock = require('@/config/baseConfig').isMock // 鍏ㄥ眬閰嶇疆鏂囦欢
 
 export default {
   components: { SidebarItem, Logo },
@@ -63,6 +64,8 @@
       return menuData.filter((menu) => {
         // 浠呮湁涓�绾ц彍鍗�
         if (!menu.children) {
+          // isMock=1 鍏ㄦ樉绀�
+          if (isMock) return true
           // 涓嶅瓨鍦ㄦ潈闄愮殑璇濓紝榛樿鏄剧ず
           // console.log(menu.auth, menu.auth ? !!authData[menu.auth] : true)
           // 蹇借hidden=true
@@ -72,6 +75,8 @@
         if (menu.children.length) {
           // 閫掑綊
           menu.children = this.jun_filterAuth(menu.children, authData)
+          // isMock=1 鍏ㄦ樉绀�
+          if (isMock) return true
           return menu.children.length
         }
       })

--
Gitblit v1.8.0