Sfoglia il codice sorgente

修改配置信息

shilin 3 anni fa
parent
commit
e9a078383a
3 ha cambiato i file con 26 aggiunte e 3 eliminazioni
  1. 24 1
      src/router/index.js
  2. 1 1
      src/views/Decision/Decision1.vue
  3. 1 1
      src/views/layout/Header.vue

+ 24 - 1
src/router/index.js

@@ -706,7 +706,30 @@ const routes = [{
 		path: "/new/historysearch",
 		name: "historysearch",
 		component: () => import( /* webpackChunkName: "historysearch" */ "../views/NewPages/history-search.vue"),
-	},
+	}, // 报警中心-升压站报警
+    {
+        path: "/alarmCenter/boosterAlarm",
+        name: "boosterAlarm",
+        component: () => import("../views/alarmCenter/boosterAlarm.vue")
+    },
+    // 报警中心-SCADA报警
+    {
+        path: "/alarmCenter/scadaAlarm",
+        name: "scadaAlarm",
+        component: () => import("../views/alarmCenter/scadaAlarm.vue")
+    },
+    // 报警中心-自定义报警
+    {
+        path: "/alarmCenter/customAlarm",
+        name: "customAlarm",
+        component: () => import("../views/alarmCenter/customAlarm.vue")
+    },
+    // 报警中心-自定义报警统计
+    {
+        path: "/alarmCenter/customStatistics",
+        name: "customStatistics",
+        component: () => import("../views/alarmCenter/customStatistics.vue")
+    },
 ]
 const router = createRouter({
 	history: createWebHashHistory(),

+ 1 - 1
src/views/Decision/Decision1.vue

@@ -75,7 +75,7 @@
 				<panel :title="'项目列表'" :showLine="false">
 					<div class="project-table">
 						<!-- 分页Table -->
-						<Table :data="tableData" :pageSize="20" @onPagging="onChangePage"
+						<Table :data="tableData"
 							:height="'calc(100vh - 32vh)'">
 							<template v-slot:tr v-if="tableData.data.length > 0">
 								<tr>

+ 1 - 1
src/views/layout/Header.vue

@@ -14,7 +14,7 @@
       </ul>
     </ul> -->
     <ul class="header-menu-user">
-      <li class="header-menu-user-title"><i class="fa fa-user"></i>Administrator</li>
+      <li class="header-menu-user-title"><i class="fa fa-user"></i>白玉杰</li>
     </ul>
   </div>
 </template>