Browse Source

[Feat 0000] 新增寸草塔二矿工况曲线

hongrunxia 3 weeks ago
parent
commit
a405cd337a

+ 51 - 51
src/layouts/default/sider/index.vue

@@ -14,65 +14,65 @@
   <BottomSider v-else-if="getIsBottomMenu" />
   <Sider v-else /> -->
   <BottomSider v-if="!noSiderLink.includes(routePath)" />
-  <bottomSider2 v-if="noChatLink.includes(routePath)" />
+  <!-- <bottomSider2 v-if="noChatLink.includes(routePath)" /> -->
 </template>
 <script lang="ts">
-import { defineComponent } from 'vue';
+  import { defineComponent } from 'vue';
 
-import Sider from './LayoutSider.vue';
-import MixSider from './MixSider.vue';
-import BottomSider from './bottomSideder.vue';
-import bottomSider2 from './bottomSider2.vue';
-import { Drawer } from 'ant-design-vue';
+  import Sider from './LayoutSider.vue';
+  import MixSider from './MixSider.vue';
+  import BottomSider from './bottomSideder.vue';
+  import bottomSider2 from './bottomSider2.vue';
+  import { Drawer } from 'ant-design-vue';
 
-import { useAppInject } from '/@/hooks/web/useAppInject';
-import { useMenuSetting } from '/@/hooks/setting/useMenuSetting';
-import { useDesign } from '/@/hooks/web/useDesign';
-import { useRoute } from 'vue-router';
-import { noSiderLink, noChatLink } from '../layout.data';
-export default defineComponent({
-  name: 'SiderWrapper',
-  components: { Sider, Drawer, MixSider, BottomSider, bottomSider2 },
-  setup() {
-    const route = useRoute();
-    const { prefixCls } = useDesign('layout-sider-wrapper');
-    const { getIsMobile } = useAppInject();
-    const { setMenuSetting, getCollapsed, getMenuWidth, getIsMixSidebar, getIsBottomMenu, getIsBottomMenuH, getShowSidebar } = useMenuSetting();
-    function handleClose() {
-      setMenuSetting({
-        collapsed: true,
-      });
-    }
+  import { useAppInject } from '/@/hooks/web/useAppInject';
+  import { useMenuSetting } from '/@/hooks/setting/useMenuSetting';
+  import { useDesign } from '/@/hooks/web/useDesign';
+  import { useRoute } from 'vue-router';
+  import { noSiderLink, noChatLink } from '../layout.data';
+  export default defineComponent({
+    name: 'SiderWrapper',
+    components: { Sider, Drawer, MixSider, BottomSider, bottomSider2 },
+    setup() {
+      const route = useRoute();
+      const { prefixCls } = useDesign('layout-sider-wrapper');
+      const { getIsMobile } = useAppInject();
+      const { setMenuSetting, getCollapsed, getMenuWidth, getIsMixSidebar, getIsBottomMenu, getIsBottomMenuH, getShowSidebar } = useMenuSetting();
+      function handleClose() {
+        setMenuSetting({
+          collapsed: true,
+        });
+      }
 
-    return {
-      prefixCls,
-      getIsMobile,
-      getCollapsed,
-      handleClose,
-      getMenuWidth,
-      getIsMixSidebar,
-      getIsBottomMenu,
-      getIsBottomMenuH,
-      getShowSidebar,
-      routePath: route.path,
-      noSiderLink,
-      noChatLink,
-    };
-  },
-});
+      return {
+        prefixCls,
+        getIsMobile,
+        getCollapsed,
+        handleClose,
+        getMenuWidth,
+        getIsMixSidebar,
+        getIsBottomMenu,
+        getIsBottomMenuH,
+        getShowSidebar,
+        routePath: route.path,
+        noSiderLink,
+        noChatLink,
+      };
+    },
+  });
 </script>
 <style lang="less">
-@prefix-cls: ~'@{namespace}-layout-sider-wrapper';
-@ventSpace: zxm;
+  @prefix-cls: ~'@{namespace}-layout-sider-wrapper';
+  @ventSpace: zxm;
 
-.@{prefix-cls} {
-  .@{ventSpace}-drawer-body {
-    height: 100vh;
-    padding: 0;
-  }
+  .@{prefix-cls} {
+    .@{ventSpace}-drawer-body {
+      height: 100vh;
+      padding: 0;
+    }
 
-  .@{ventSpace}-drawer-header-no-title {
-    display: none;
+    .@{ventSpace}-drawer-header-no-title {
+      display: none;
+    }
   }
-}
 </style>

+ 38 - 2
src/views/vent/monitorManager/mainFanMonitor/main.data.ts

@@ -813,7 +813,7 @@ export const assistanceData = {
 export const setOption = (deviceType?) => {
   let yMax = 4500;
   const { sysOrgCode } = useGlobSetting();
-  // const sysOrgCode = 'sdmtjtsgtmk';
+  // const sysOrgCode = 'sdmtjtcctrk';
   if (sysOrgCode == 'sdmtjtdltmk') {
     // 这里判断白家渠还是五当沟
     if (deviceType == 'fanmain_bjq') {
@@ -839,6 +839,8 @@ export const setOption = (deviceType?) => {
     yMax = 3000;
   } else if (sysOrgCode == 'sdmtjtdltmkhjtj') {
     yMax = 3000;
+  } else if (sysOrgCode == 'sdmtjtcctrk') {
+    yMax = 600;
   } else {
     yMax = 4500;
   }
@@ -1150,7 +1152,7 @@ export const initData1 = () => {
 // 大柳塔武当沟
 export const initData = (deviceType?) => {
   const { sysOrgCode } = useGlobSetting();
-  // const sysOrgCode = 'sdmtjtsgtmk';
+  // const sysOrgCode = 'sdmtjtcctrk';
   if (sysOrgCode == 'sdmtjtdltmk') {
     return initDataDlt(deviceType);
   } else if (sysOrgCode == 'sdmtjtswmk') {
@@ -1167,11 +1169,45 @@ export const initData = (deviceType?) => {
     return initDataSgt();
   } else if (sysOrgCode == 'sdmtjtyjlmk') {
     return initDataJj();
+  } else if (sysOrgCode == 'sdmtjtcctrk') {
+    return initDataCctr();
   } else {
     return initData1();
   }
 };
 // 石圪台
+const initDataCctr = () => {
+  const data: any[] = [];
+  data.push({
+    angle: 0,
+    Hz: 0,
+    a: -0.0221,
+    b: -1.2494,
+    c: 552.28,
+    min: 52,
+    max: 125,
+  });
+  data.push({
+    angle: 3,
+    Hz: 3,
+    a: -0.0232,
+    b: -0.8204,
+    c: 603.39,
+    min: 50,
+    max: 139,
+  });
+  data.push({
+    angle: 6,
+    Hz: 6,
+    a: -0.0417,
+    b: 3.1004,
+    c: 498.9,
+    min: 45,
+    max: 150,
+  });
+  return data;
+};
+// 石圪台
 const initDataSgt = () => {
   const data: any[] = [];
   data.push({