소스 검색

修复报警预警查询中部件字段参数错误问题

baiyanting 1 년 전
부모
커밋
0415cf3c52
2개의 변경된 파일4개의 추가작업 그리고 8개의 파일을 삭제
  1. 2 4
      src/views/IntegratedAlarm/safe/customWarning/index.vue
  2. 2 4
      src/views/IntegratedAlarm/safe/historyWarning/index.vue

+ 2 - 4
src/views/IntegratedAlarm/safe/customWarning/index.vue

@@ -108,7 +108,7 @@
               <el-option
                 v-for="item in componentList"
                 :key="item.id"
-                :value="item.id"
+                :value="item.nemCode"
                 :label="item.name"
               >
               </el-option>
@@ -523,9 +523,7 @@ const modelList = computed(() => {
   if (state.stationId == "") {
     return [];
   } else {
-    state.modelId = route.query.deviceId
-      ? route.query.modelId
-      : state.modelListAll[state.stationId]?.[0]?.id || "";
+    state.modelId = route.query.deviceId ? route.query.modelId : "";
     return state.modelListAll[state.stationId];
   }
 });

+ 2 - 4
src/views/IntegratedAlarm/safe/historyWarning/index.vue

@@ -103,7 +103,7 @@
               <el-option
                 v-for="item in componentList"
                 :key="item.id"
-                :value="item.id"
+                :value="item.nemCode"
                 :label="item.name"
               >
               </el-option>
@@ -541,9 +541,7 @@ const modelList = computed(() => {
     if (state.stationId == "") {
       return [];
     } else {
-      state.modelId = route.query.deviceId
-        ? route.query.modelId
-        : state.modelListAll[state.stationId]?.[0]?.id || "";
+      state.modelId = route.query.deviceId ? route.query.modelId : "";
       return state.modelListAll[state.stationId];
     }
   } else {