From c746783c4f570f9bdbe2d62b22bda22308b0dfba Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期一, 05 十二月 2022 15:27:35 +0800
Subject: [PATCH] 修复断流数据展示的内容

---
 src/views/manageCenter/index.vue |   37 +++++++++++++++++++++----------------
 1 files changed, 21 insertions(+), 16 deletions(-)

diff --git a/src/views/manageCenter/index.vue b/src/views/manageCenter/index.vue
index fa34a73..97b7298 100644
--- a/src/views/manageCenter/index.vue
+++ b/src/views/manageCenter/index.vue
@@ -318,7 +318,23 @@
           icon: "/images/manageCenter/push.png",
           openPath: "/subAccount",
           path: "/subAccount",
-          permission: "subAccount"
+          permission: "accountMng"
+        },
+
+        {
+          name: "鏁版嵁涓婁紶",
+          icon: "/images/manageCenter/push.png",
+          openPath: "/dataPush",
+          path: "/dataPush",
+          permission: "reportMng"
+        },
+
+        {
+          name: "鏁版嵁鎶ヨ〃",
+          icon: "/images/manageCenter/push.png",
+          openPath: "/dataReport",
+          path: "/dataReport",
+          permission: ""
         },
 
         {
@@ -333,7 +349,7 @@
           icon: "/images/manageCenter/cam.png",
           openPath: "/invalidCamera",
           path: "/invalidCamera",
-          permission: "invalidCamera"
+          permission: "positionMng"
         }
       ],
       cameraTree: [],
@@ -758,21 +774,10 @@
       this.pieChart.setOption(this.pieOption)
     },
     jump(route) {
-      const userInfo = JSON.parse(sessionStorage.getItem("userInfo"))
-
-      const val = userInfo.permissions.find((item) => {
-        return item == route.permission
+      const { href } = this.$router.resolve({
+        path: route.path
       })
-
-      // 淇敼涓哄叏閮ㄥ湪鏂版爣绛鹃〉鎵撳紑
-      if (val) {
-        const { href } = this.$router.resolve({
-          path: route.path
-        })
-        window.open(href, "_blank")
-      } else if (!userInfo.parentId) {
-        this.$router.push(route.openPath)
-      }
+      window.open(href, "_blank")
     },
     refrash() {},
     handleSizeChange() {},

--
Gitblit v1.8.0