Bläddra i källkod

修复数据查询页面报错问题

baiyanting 9 månader sedan
förälder
incheckning
6b9969bd6e
1 ändrade filer med 27 tillägg och 27 borttagningar
  1. 27 27
      src/views/IntegratedAlarm/safe/dataSearch/index.vue

+ 27 - 27
src/views/IntegratedAlarm/safe/dataSearch/index.vue

@@ -399,16 +399,16 @@ const filterAIList = computed(() =>
 
 // get 实时data
 const getLatest = async (stationId, AIlist) => {
-  const data = await getAdapterLatest(stationId, AIlist, state.stationId);
-  state.AIList?.forEach((e) => {
-    if (e.uniformCode.indexOf("AI") !== -1) {
-      e.value = Number(data[e.uniformCode]?.doubleValue).toFixed(2);
-    }
-    // else {
-    //   e.value = data[e.uniformCode]?.booleanValue - 0;
-    // }
-    e["time"] = data[e.uniformCode]?.ts;
-  });
+//   const data = await getAdapterLatest(stationId, AIlist, state.stationId);
+//   state.AIList?.forEach((e) => {
+//     if (e.uniformCode.indexOf("AI") !== -1) {
+//       e.value = Number(data[e.uniformCode]?.doubleValue).toFixed(2);
+//     }
+//     // else {
+//     //   e.value = data[e.uniformCode]?.booleanValue - 0;
+//     // }
+//     e["time"] = data[e.uniformCode]?.ts;
+//   });
 };
 
 // get 历史数据
@@ -502,23 +502,23 @@ const option = {
 
 //get AI
 const getFetchAIPointListt = async () => {
-  const res = await fetchAIDIPointList(
-    "windturbine",
-    state.structcode,
-    state.stationId,
-    state.activeWT,
-    query.page,
-    query.limit
-  );
-  state.AIList = res?.records;
-  query.pageTotal = res?.total;
-  let AIlist = [];
-  res.records?.forEach((e) => {
-    AIlist.push(e.uniformCode);
-  });
-  if (state.Interval) {
-    clearInterval(state.Interval);
-  }
+//   const res = await fetchAIDIPointList(
+//     "windturbine",
+//     state.structcode,
+//     state.stationId,
+//     state.activeWT,
+//     query.page,
+//     query.limit
+//   );
+//   state.AIList = res?.records;
+//   query.pageTotal = res?.total;
+//   let AIlist = [];
+//   res.records?.forEach((e) => {
+//     AIlist.push(e.uniformCode);
+//   });
+//   if (state.Interval) {
+//     clearInterval(state.Interval);
+//   }
   getLatest(state.activeWT, AIlist);
   state.Interval = setInterval(getLatest, 5000, state.activeWT, AIlist);
 };