소스 검색

修复智慧检修跳转页面变黑问题

baiyanting 1 년 전
부모
커밋
95cd8fd2df
3개의 변경된 파일23개의 추가작업 그리고 22개의 파일을 삭제
  1. 21 20
      src/router/index.js
  2. 1 1
      src/tools/request.js
  3. 1 1
      src/views/HealthControl/healthManagement/homepage/index.vue

+ 21 - 20
src/router/index.js

@@ -809,17 +809,7 @@ export const asyncRoutes = [
               permissions: ["jn_jkgl_jksy", "*:*:*"],
             },
           },
-          {
-            path: "wpHealth/:wpId/:wpName?", // 场站健康管理
-            name: "health3",
-            component: () =>
-              import("@/views/HealthControl/healthDetail/wpHealth"),
-            meta: {
-              title: "场站健康管理",
-              icon: "",
-              permissions: ["jn_jkgl_czjk", "*:*:*", "*:*:*"],
-            },
-          },
+
           {
             path: "overview",
             component: () =>
@@ -830,7 +820,7 @@ export const asyncRoutes = [
             meta: {
               title: "健康总览",
               icon: "",
-              permissions: ["jn_jkgl_jkzl", "*:*:*", "*:*:*"],
+              permissions: ["jn_jkgl_jkzl", "*:*:*"],
             },
           },
           {
@@ -843,7 +833,7 @@ export const asyncRoutes = [
             meta: {
               title: "健康矩阵",
               icon: "",
-              permissions: ["jn_jkgl_jkjz", "*:*:*", "*:*:*"],
+              permissions: ["jn_jkgl_jkjz", "*:*:*"],
             },
           },
           {
@@ -856,7 +846,7 @@ export const asyncRoutes = [
             meta: {
               title: "健康列表",
               icon: "",
-              permissions: ["jn_jkgl_jklb", "*:*:*", "*:*:*"],
+              permissions: ["jn_jkgl_jklb", "*:*:*"],
             },
           },
           {
@@ -869,7 +859,7 @@ export const asyncRoutes = [
             meta: {
               title: "劣化状态分析",
               icon: "",
-              permissions: ["jn_jkgl_lhztfx", "*:*:*", "*:*:*"],
+              permissions: ["jn_jkgl_lhztfx", "*:*:*"],
             },
           },
         ],
@@ -988,10 +978,21 @@ export const asyncRoutes = [
         meta: {
           title: "健康详情",
           icon: "",
-          //   permissions: ["jn_jkgl_jktj", "jn_jkgl_jksy", "jn_jkgl_jkjz"],
+          permissions: ["jn_jkgl", "*:*:*"],
         },
         children: [
           {
+            path: "wpHealth/:wpId/:wpName?", // 场站健康管理
+            name: "health3",
+            component: () =>
+              import("@/views/HealthControl/healthDetail/wpHealth"),
+            meta: {
+              title: "场站健康管理",
+              icon: "",
+              permissions: ["jn_jkgl", "*:*:*"],
+            },
+          },
+          {
             path: "wtHealth/:wpId/:wtId", //设备健康详情
             name: "health0",
             component: () =>
@@ -999,7 +1000,7 @@ export const asyncRoutes = [
             meta: {
               title: "设备健康详情",
               icon: "",
-              //   permissions: ["jn_jkgl_jktj", "jn_jkgl_jksy", "jn_jkgl_jkjz"],
+              permissions: ["jn_jkgl", "*:*:*"],
             },
           },
           {
@@ -1010,7 +1011,7 @@ export const asyncRoutes = [
             meta: {
               title: "健康趋势",
               icon: "",
-              //   permissions: ["jn_jkgl_jktj", "jn_jkgl_jksy", "jn_jkgl_jkjz"],
+              permissions: ["jn_jkgl", "*:*:*"],
             },
           },
           {
@@ -1021,7 +1022,7 @@ export const asyncRoutes = [
             meta: {
               title: "劣化状态分析曲线",
               icon: "",
-              //   permissions: ["jn_jkgl_jktj", "jn_jkgl_jksy", "jn_jkgl_jkjz"],
+              permissions: ["jn_jkgl", "*:*:*"],
             },
           },
         ],
@@ -1779,7 +1780,7 @@ export const asyncRoutes = [
 ];
 const router = createRouter({
   history: createWebHashHistory(),
-  base: "/zhfx/",
+  base: "/nem/",
   routes: [...constantRoutes, ...asyncRoutes],
 });
 

+ 1 - 1
src/tools/request.js

@@ -48,7 +48,7 @@ service.interceptors.response.use(
           type: "warning",
           callback: () => {
             store.dispatch("user/LogOut").then(() => {
-              location.href = "/";
+              this.$route.push("/home");
             });
           },
         }

+ 1 - 1
src/views/HealthControl/healthManagement/homepage/index.vue

@@ -300,7 +300,7 @@ export default {
     // 页面跳转
     jumpUrl({ wpId, name }) {
       this.$router.push({
-        path: `/health/healthManagement/wpHealth/${wpId}/${name}`,
+        path: `/health/healthDetail/wpHealth/${wpId}/${name}`,
       });
     },