From 4a800a8fc83c6bd1f86a8e847b079a51a7532c09 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期三, 20 七月 2022 15:05:58 +0800
Subject: [PATCH] 修复国标配置的bug

---
 src/pages/shuohuangMonitorAnalyze/components/leftNav.vue |   77 ++++++++++++++++++++++----------------
 1 files changed, 45 insertions(+), 32 deletions(-)

diff --git a/src/pages/shuohuangMonitorAnalyze/components/leftNav.vue b/src/pages/shuohuangMonitorAnalyze/components/leftNav.vue
index e28a759..9b605fd 100644
--- a/src/pages/shuohuangMonitorAnalyze/components/leftNav.vue
+++ b/src/pages/shuohuangMonitorAnalyze/components/leftNav.vue
@@ -1,8 +1,14 @@
 <template>
   <div class="left-nav">
     <h1>
-      <img class="icon" :src="`${publicPath}images/shuohuang/railroad.png`" style="height: 40px;" />
-      <span v-show="!isCollapse" style="padding-left: 6px;">鏈旈粍閾佽矾鏈鸿締鍒嗗叕鍙�</span>
+      <img
+        class="icon"
+        :src="`${publicPath}images/shuohuang/railroad.png`"
+        style="height: 40px"
+      />
+      <span v-show="!isCollapse" style="padding-left: 6px"
+        >鏈旈粍閾佽矾鏈鸿締鍒嗗叕鍙�</span
+      >
     </h1>
     <el-menu
       class="el-menu-vertical-demo"
@@ -12,7 +18,7 @@
       :default-active="activeIndex"
       @select="handleSelect"
     >
-      <el-menu-item index="guideIndex">
+      <el-menu-item index="guideIndex" v-show="isAdmin">
         <i class="iconfont iconshouye"></i>
         <span slot="title">棣栭〉</span>
       </el-menu-item>
@@ -20,15 +26,15 @@
         <i class="iconfont iconshipin2"></i>
         <span slot="title">瑙嗛鍒嗘瀽妫�绱�</span>
       </el-menu-item>
-      <el-menu-item index="taskManage">
+      <el-menu-item index="taskManage" v-if="isAdmin">
         <i class="iconfont iconrenwu1"></i>
         <span slot="title">浠诲姟绠$悊</span>
       </el-menu-item>
-      <el-menu-item index="memberManage">
+      <el-menu-item index="memberManage" v-if="isAdmin">
         <i class="iconfont iconrenyuanguanli"></i>
         <span slot="title">浜哄憳绠$悊</span>
       </el-menu-item>
-      <el-menu-item index="configManage">
+      <el-menu-item index="configManage" v-if="isAdmin">
         <i class="iconfont iconicon-test4"></i>
         <span slot="title">閰嶇疆绠$悊</span>
       </el-menu-item>
@@ -42,7 +48,7 @@
         <el-menu-item index="transferDeviceManage">杞偍璁惧绠$悊</el-menu-item>
         <el-menu-item index="lkgManage">LKJ鏁版嵁绠$悊</el-menu-item>
       </el-submenu>
-      <el-submenu index="7">
+      <el-submenu index="7" v-if="isAdmin">
         <template slot="title">
           <i class="iconfont iconkeshihua"></i>
           <span slot="title">鍙鍖栧ぇ灞�</span>
@@ -55,49 +61,56 @@
 </template>
 
 <script>
-
 //import railroadImg from '/images/shuohuang/railroad.png';
 export default {
   props: {
     isCollapse: {
       type: Boolean,
-      default: true
+      default: true,
     },
     menuChange: {
-      type: Function
-    }
+      type: Function,
+    },
+  },
+  computed: {
+    isAdmin() {
+      if (
+        sessionStorage.getItem("userInfo") &&
+        sessionStorage.getItem("userInfo") !== ""
+      ) {
+        let loginName = JSON.parse(sessionStorage.getItem("userInfo")).username;
+        return loginName === "admin" || loginName === "basic";
+      }
+      return false;
+    },
   },
   data() {
     return {
       publicPath: process.env.BASE_URL,
-      activeIndex: 'guideIndex'
-    }
+      activeIndex: "guideIndex",
+    };
   },
   mounted() {
-    console.log('mounted')
-    window.onbeforeunload = () => {
-      // debugger
-      console.log('beforeunload')
-      sessionStorage.setItem('leftNavAct', this.activeIndex);
-    }
-    if (!!sessionStorage.getItem('leftNavAct')) {
-      this.activeIndex = sessionStorage.getItem('leftNavAct');
-      this.$emit('menuChange', this.activeIndex);
-    }
+    // if (this.isAdmin) {
+    //   if (!!sessionStorage.getItem('leftNavAct')) {
+    //     console.log("leftNavAct")
+    //     this.activeIndex = sessionStorage.getItem('leftNavAct');
+    //   }
+    // }
+    this.activeIndex = this.isAdmin ? "guideIndex" : "searchForVideoAnalyze";
+
+    this.$emit("menuChange", this.activeIndex);
   },
   methods: {
     handleSelect(index, indePath) {
       this.activeIndex = index;
-      this.$emit('menuChange', index);
+      sessionStorage.setItem("leftNavAct", this.activeIndex);
+      this.$emit("menuChange", index);
     },
-    handleOpen() {
-
-    },
-    handleClose() {
-
-    }
-  }
-}
+    handleOpen() {},
+    handleClose() {},
+  },
+};
 </script>
 
 <style lang="scss">

--
Gitblit v1.8.0