Browse Source

提交文件

hongrunxia 2 months ago
parent
commit
4c080c094b

+ 3 - 4
.env.development

@@ -6,8 +6,8 @@ VITE_PUBLIC_PATH = /
 
 # 跨域代理,您可以配置多个 ,请注意,没有换行符
 #VITE_PROXY = [["/jeecgboot","http://localhost:8080/jeecg-boot"],["/upload","http://localhost:3300/upload"]]
-#VITE_PROXY = [["/jeecgsystem","http://182.92.126.35:9999"],["/upload","http://182.92.126.35:9999/upload"],["/documents", "http://182.92.126.35:9050"],["/modelreq", "http://182.92.126.35:9999"],["/webRtc", "http://182.92.126.35:8051"]]
-VITE_PROXY = [["/jeecgsystem","http://192.168.183.88:9999"],["/upload","http://192.168.183.88:9999/upload"],["/documents", "http://192.168.183.88:9050"],["/modelreq", "http://192.168.183.88:9999"],["/webRtc", "http://192.168.183.88:8051"]]
+VITE_PROXY = [["/jeecgsystem","http://182.92.126.35:9999"],["/upload","http://182.92.126.35:9999/upload"],["/documents", "http://182.92.126.35:9050"],["/modelreq", "http://182.92.126.35:9999"],["/webRtc", "http://182.92.126.35:8051"]]
+# VITE_PROXY = [["/jeecgsystem","http://192.168.183.88:9999"],["/upload","http://192.168.183.88:9999/upload"],["/documents", "http://192.168.183.88:9050"],["/modelreq", "http://192.168.183.88:9999"],["/webRtc", "http://192.168.183.88:8051"]]
 # VITE_PROXY = [["/jeecgsystem","http://10.10.150.72:9999"],["/upload","http://localhost:3300/upload"],["/documents", "http://10.10.150.72:9050"],["/modelreq", "http://10.10.150.72:9999"],["/webRtc", "http://192.168.183.216:8051"]]
 #VITE_PROXY = [["/jeecgsystem","http://192.168.1.8:9999"],["/upload","http://localhost:3300/upload"]]
 
@@ -29,7 +29,6 @@ VITE_GLOB_API_URL_PREFIX=
 
 #微前端qiankun应用,命名必须以VITE_APP_SUB_开头,jeecg-app-1为子应用的项目名称,也是子应用的路由父路径
 #VITE_APP_SUB_APP = [["micro-need-air", "//10.10.150.72:8099/"], ["micro-vent-3dModal", "//localhost:8091/"], ["micro-fire-front", "//localhost:8090/"]]
-#VITE_APP_SUB_APP = [["micro-vent-3dModal", "//192.168.183.88:8091/", "micro-vent-3dModal"], ["micro-need-air", "//192.168.183.88:8093/", "micro-need-air"], ["micro-fire-front", "//localhost:8097/", "fire-Micro"]]
-VITE_APP_SUB_APP = [["micro-vent-3dModal", "//192.168.183.154:8091/", "micro-vent-3dModal"], ["micro-need-air", "//192.168.183.88:8093/", "micro-need-air"], ["micro-fire-front", "//localhost:8097/", "fire-Micro"]]
+VITE_APP_SUB_APP = [["micro-vent-3dModal", "//192.168.183.88:8091/", "micro-vent-3dModal"], ["micro-need-air", "//192.168.183.88:8093/", "micro-need-air"], ["micro-fire-front", "//localhost:8097/", "fire-Micro"]]
 # VITE_APP_SUB_APP = [["micro-vent-3dModal", "//182.92.126.35:8091/", "micro-vent-3dModal"], ["micro-need-air", "//182.92.126.35:8099/", "micro-need-air"], ["micro-fire-front", "//182.92.126.35:8097/", "fire-Micro"]]
 # VITE_APP_SUB_APP = [["micro-vent-3dModal", "//localhost:8091/"], ["micro-need-air", "//localhost:8099/"], ["micro-fire-front", "//localhost:8090/"]]

BIN
src/assets/images/company/monitor-doc.png


BIN
src/assets/images/company/monitor-realtime.png


+ 6 - 3
src/views/vent/home/billboard/billboard.data.ts

@@ -358,17 +358,20 @@ export const FILE_OVERVIEW_CONFIG = [
 export const VENTILATION_STATUS_HEADER_CONFIG = [
   {
     label: '总进风量(m³/min)',
-    prop: 'zongjinfeng',
+    prop: 'totalIntM3',
+    // prop: 'zongjinfeng',
     type: 'blue-to-left',
   },
   {
     label: '总回风量(m³/min)',
-    prop: 'zonghuifeng',
+    prop: 'totalRetM3',
+    // prop: 'zonghuifeng',
     type: 'green-to-right',
   },
   {
     label: '总需风量(m³/min)',
-    prop: 'xufengliang',
+    prop: 'totalPlanM3',
+    // prop: 'xufengliang',
     type: 'green-to-left',
   },
   {

+ 51 - 15
src/views/vent/home/clique/index.vue

@@ -23,6 +23,12 @@
               <iconLight @show-detail="showDetail" :warningList="warningList" />
             </div>
           </div>
+          <img
+            :src="isDataRealTime ? '/@/assets/images/company/monitor-realtime.png' : '/@/assets/images/company/monitor-doc.png'"
+            alt="切换数据模式"
+            class="w-34px h-34px pos-absolute right-5px bottom-30% z-5"
+            @click="switchDataMode"
+          />
           <!-- 榆家梁矿 -->
           <!-- <div class="area-card2">
             
@@ -62,6 +68,8 @@
   import iconLight from './components/icon-light.vue';
   import dialogModal from './components/dialog-modal.vue';
   import { getHomeData, getList } from './clique.api';
+  import { EllipsisOutlined } from '@ant-design/icons-vue';
+
   const dialogModalRef = ref();
   let mainTitle = ref('国能神东一通三防管控平台');
   // let mainTitle = ref('国家能源神东煤炭集团');
@@ -95,6 +103,9 @@
 
   let orgcode = ref('');
 
+  /** 数据是否使用实时数据,使用实时数据/报表数据对应某些数据的不同字段 */
+  const isDataRealTime = ref(true);
+
   // https获取监测数据
   let timer: null | NodeJS.Timeout = null;
   function getMonitor() {
@@ -120,29 +131,49 @@
       roadData.data1.length = 0;
       airKjStatus.length = 0;
       const warningListTemp: { orgcode: string; isWarning: boolean }[] = [];
-      res.forEach((el) => {
-        airKjStatus.push({
-          deviceName: el.sys_data.deviceName,
-          jf: el.sys_data.zongjinfeng,
-          xf: el.sys_data.xufengliang,
-          hf: el.sys_data.zonghuifeng,
-          isWarning: Number(el.sys_data.zongjinfeng) < Number(el.sys_data.xufengliang),
-        });
+      res.forEach(({ sys_data, orgcode }) => {
+        const air = {
+          deviceName: sys_data.deviceName,
+          jf: isDataRealTime.value ? sys_data.zongjinfeng : sys_data.totalIntM3,
+          xf: isDataRealTime.value ? sys_data.xufengliang : sys_data.totalPlanM3,
+          hf: isDataRealTime.value ? sys_data.zonghuifeng : sys_data.totalRetM3,
+          isWarning: false,
+        };
+        air.isWarning = Number(air.jf) < Number(air.xf);
+        airKjStatus.push(air);
 
         //临时添加,前端判断,后期后端加上预警再处理
-        if (Number(el.sys_data.zongjinfeng) < Number(el.sys_data.xufengliang)) {
-          warningListTemp.push({ orgcode: el.orgcode, isWarning: true });
+        if (air.isWarning) {
+          warningListTemp.push({ orgcode: orgcode, isWarning: true });
         } else {
-          warningListTemp.push({ orgcode: el.orgcode, isWarning: false });
+          warningListTemp.push({ orgcode: orgcode, isWarning: false });
         }
 
-        roadData.data.push(el.sys_data.flength);
-        // roadData.data.push(el.sys_data.totallength);
-        roadData.data1.push(el.sys_data.deviceName);
+        roadData.data.push(sys_data.flength);
+        // roadData.data.push(sys_data.totallength);
+        roadData.data1.push(sys_data.deviceName);
       });
       warningList.value = warningListTemp;
       compositeData.value = res.reduce((arr, e) => {
-        return [...arr, ...e.majorpath_data];
+        if (isDataRealTime.value) {
+          return [...arr, ...e.majorpath_data];
+        } else {
+          return [
+            ...arr,
+            ...e.majorpath_data.map(({ majorpath, readData }) => {
+              // 报表数据只有总数据,按实时数据计算比例然后乘以报表数据
+              return {
+                majorpath: {
+                  drag_1: Math.round((majorpath.drag_1 / majorpath.drag_total) * parseInt(readData.fy_merge.value)),
+                  drag_2: Math.round((majorpath.drag_2 / majorpath.drag_total) * parseInt(readData.fy_merge.value)),
+                  drag_3: Math.round((majorpath.drag_3 / majorpath.drag_total) * parseInt(readData.fy_merge.value)),
+                  drag_total: readData.fy_merge.value,
+                  m3_total: readData.retM3_merge.value,
+                },
+              };
+            }),
+          ];
+        }
       }, []);
       centerDetail.value = res.filter((v) => v.orgcode == orgcode.value)[0];
     }
@@ -175,6 +206,11 @@
     isShowDialog.value = false;
   }
 
+  function switchDataMode() {
+    isDataRealTime.value = !isDataRealTime.value;
+    getHomeDataList();
+  }
+
   onMounted(() => {
     getHomeDataList();
     getLists();