dust.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <!-- eslint-disable vue/multi-word-component-names -->
  2. <template>
  3. <div class="company-home">
  4. <div class="top-bg">
  5. <div class="main-title">{{ mainTitle }}</div>
  6. </div>
  7. <!-- <a-dropdown class="module-dropdown" :class="{ 'module-dropdown-original': isOriginal }" :trigger="['click']" placement="bottomRight">
  8. <a class="ant-dropdown-link" @click.prevent>
  9. 全矿井通风检测
  10. <CaretDownOutlined />
  11. </a>
  12. <template #overlay>
  13. <MonitorCenter />
  14. </template>
  15. </a-dropdown> -->
  16. <!-- 采用定位方式以避免出现各个模块隐藏时其他模块下移的问题 -->
  17. <template v-if="isOriginal">
  18. <ModuleOriginal
  19. v-for="cfg in configs"
  20. :key="cfg.deviceType"
  21. :show-style="cfg.showStyle"
  22. :module-data="cfg.moduleData"
  23. :module-name="cfg.moduleName"
  24. :device-type="cfg.deviceType"
  25. :visible="true"
  26. />
  27. </template>
  28. <template v-else-if="isCommon">
  29. <ModuleCommon
  30. v-for="cfg in configs"
  31. :key="cfg.deviceType"
  32. :show-style="cfg.showStyle"
  33. :module-data="cfg.moduleData"
  34. :module-name="cfg.moduleName"
  35. :device-type="cfg.deviceType"
  36. :visible="true"
  37. />
  38. </template>
  39. <template v-else>
  40. <!-- 下面是正常展示的各新版模块 -->
  41. <ModuleEnhanced
  42. v-for="cfg in enhancedConfigs"
  43. :key="cfg.deviceType"
  44. :visible="cfg.visible"
  45. :show-style="cfg.showStyle"
  46. :module-data="cfg.moduleData"
  47. :module-name="cfg.moduleName"
  48. :device-type="cfg.deviceType"
  49. @close="cfg.visible = false"
  50. />
  51. <!-- 下面是用于呼出已隐藏的模块的按钮 -->
  52. <div class="pos-absolute top-70px left-460px z-3">
  53. <div v-for="(item, i) in hiddenList" :key="`vvhchg${i}`">
  54. <AButton class="module-trigger-button" @click="item.visible = true">{{ item.moduleName }}</AButton>
  55. </div>
  56. </div>
  57. </template>
  58. <div style="width: 1000px; height: 570px; position: absolute; left: calc(50% - 500px); top: 60px">
  59. <VentModal />
  60. </div>
  61. </div>
  62. </template>
  63. <script lang="ts" setup>
  64. import { computed, onMounted, ref } from 'vue';
  65. // import { CaretDownOutlined } from '@ant-design/icons-vue';
  66. // import MonitorCenter from './components/MonitorCenter.vue';
  67. import { useInitConfigs } from './hooks/useInit';
  68. import { Config } from '../../deviceManager/configurationTable/types';
  69. import ModuleEnhanced from './components/ModuleEnhanced.vue';
  70. import ModuleOriginal from './components/ModuleOriginal.vue';
  71. import ModuleCommon from './components/ModuleCommon.vue';
  72. // import { testConfigBuErTai } from './configurable.data';
  73. // import { useRoute } from 'vue-router';
  74. import VentModal from '/@/components/vent/micro/ventModal.vue';
  75. interface EnhancedConfig extends Config {
  76. visible: boolean;
  77. }
  78. const mainTitle = ref('智能粉尘管控系统');
  79. // const moduleCodes = ['fanlocal', 'fanmain' /** 'vc', 'ar', 'va', 'ws', 'dw' */];
  80. const hiddenList = computed(() => {
  81. return enhancedConfigs.value.filter((e) => e.visible === false);
  82. });
  83. const { configs, isOriginal, isCommon, fetchConfigs } = useInitConfigs();
  84. const enhancedConfigs = ref<EnhancedConfig[]>([]);
  85. onMounted(() => {
  86. // configs.value = testConfigB;
  87. fetchConfigs('dust').then(() => {
  88. enhancedConfigs.value = configs.value.map((c) => {
  89. return {
  90. visible: true,
  91. ...c,
  92. };
  93. });
  94. });
  95. });
  96. </script>
  97. <style lang="less" scoped>
  98. @font-face {
  99. font-family: 'douyuFont';
  100. src: url('../../../../assets/font/douyuFont.otf');
  101. }
  102. .company-home {
  103. width: 100%;
  104. height: 100%;
  105. color: @white;
  106. position: relative;
  107. // background: url('@/assets/images/home-container/configurable/firehome/bg.png') no-repeat center;
  108. .top-bg {
  109. width: 100%;
  110. height: 56px;
  111. background: url('@/assets/images/vent/home/modal-top.png') no-repeat center;
  112. position: absolute;
  113. z-index: 1;
  114. .main-title {
  115. height: 56px;
  116. font-family: 'douyuFont';
  117. font-size: 20px;
  118. letter-spacing: 2px;
  119. display: flex;
  120. justify-content: center;
  121. align-items: center;
  122. }
  123. }
  124. // .module-left {
  125. // position: absolute;
  126. // width: 450px;
  127. // height: 280px;
  128. // left: 0;
  129. // }
  130. // .module-right {
  131. // position: absolute;
  132. // width: 450px;
  133. // height: 280px;
  134. // right: 0;
  135. // }
  136. // .module-bottom {
  137. // position: absolute;
  138. // width: 1000px;
  139. // height: 280px;
  140. // }
  141. .module-dropdown {
  142. padding: 10px;
  143. background-image: linear-gradient(to bottom, #036886, #072a40);
  144. border-bottom: 2px solid #3df6ff;
  145. color: #fff;
  146. position: absolute;
  147. top: 70px;
  148. right: 460px;
  149. }
  150. .module-dropdown-original {
  151. padding: 10px;
  152. background-image: linear-gradient(to bottom, #036886, #072a40);
  153. border-bottom: 2px solid #3df6ff;
  154. color: #fff;
  155. position: absolute;
  156. top: 70px;
  157. right: 460px;
  158. }
  159. .module-trigger-button {
  160. color: #fff;
  161. background-image: linear-gradient(to bottom, #036886, #072a40);
  162. border: none;
  163. border-bottom: 2px solid #3df6ff;
  164. }
  165. }
  166. :deep(.loading-box) {
  167. position: unset;
  168. }
  169. </style>