|
@@ -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);
|
|
|
};
|