dust-green.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <div class="company-home">
  3. <!-- 如果是有 deviceType、type 等 query,认为是详情页,不需要展示普通模块,只需要模型 -->
  4. <template v-if="!route.query.deviceType">
  5. <div class="main-container">
  6. <ModuleOriginal
  7. v-for="cfg in configs"
  8. :key="cfg.deviceType"
  9. :show-style="cfg.showStyle"
  10. :module-data="cfg.moduleData"
  11. :module-name="cfg.moduleName"
  12. :device-type="cfg.deviceType"
  13. :data="data"
  14. :visible="true"
  15. />
  16. <div class="left-area"></div>
  17. <div class="right-area"></div>
  18. <div class="bottom-area"></div>
  19. </div>
  20. </template>
  21. <div style="width: 1020px; height: 530px; position: absolute; left: 436px; top: 0">
  22. <VentModal />
  23. </div>
  24. </div>
  25. </template>
  26. <script lang="ts" setup>
  27. import { onMounted, onUnmounted } from 'vue';
  28. import { useInitConfigs, useInitPage } from './hooks/useInit';
  29. import ModuleOriginal from './components/ModuleOriginal-green.vue';
  30. import VentModal from '/@/components/vent/micro/ventModal.vue';
  31. // import { list } from './configurable.api';
  32. import { useRoute } from 'vue-router';
  33. import { useGlobSetting } from '/@/hooks/setting';
  34. import { BDDustMock } from './mock';
  35. import { testConfigDustGreen } from './configurable.data';
  36. const { title = '智能通风管控系统' } = useGlobSetting();
  37. const { configs, fetchConfigs } = useInitConfigs();
  38. const { data, updateData, updateEnhancedConfigs } = useInitPage(title);
  39. const route = useRoute();
  40. let interval: number | undefined;
  41. // let configs = ref<any[]>([]);
  42. // let configsLeft = computed(() => {
  43. // return configs.value.filter((v) => v.showStyle.position.includes('top') && v.showStyle.position.includes('left'));
  44. // });
  45. // let configsBottom = computed(() => {
  46. // return configs.value.filter((v) => v.showStyle.position.includes('bottom'));
  47. // });
  48. // let configsRight = computed(() => {
  49. // return configs.value.filter((v) => v.showStyle.position.includes('right'));
  50. // });
  51. // function refresh() {
  52. // fetchConfigs('dust-green').then(() => {
  53. // console.log('debug r.', configs.value, configsBottom.value, isOriginal)
  54. // // configs.value = testConfigDustGreen
  55. // // updateEnhancedConfigs(configs.value);
  56. // // 测风装置 windrect
  57. // // 自动风窗 window
  58. // // 自动风门 gate
  59. // // 传感器 modelsensor
  60. // // 局部通风机 fanlocal
  61. // // 主通风机 fanmain
  62. // // 密闭 obfurage
  63. // // 安全监控 safetymonitor
  64. // // 光纤测温 fiber
  65. // // 束管监测 bundletube
  66. // // 制氮 nitrogen
  67. // // 制浆 pulping
  68. // // 喷淋 spray
  69. // // 喷粉 dustdev
  70. // // 喷雾设备 atomizing
  71. // // 除尘风机 dedustefan
  72. // // 粉尘传感器 dustsensor
  73. // // 转载点 transferpoint
  74. // // 瓦斯抽采泵 pump
  75. // // 粉尘 dusting
  76. // // 瓦斯监测 gasmonitor
  77. // // 球阀 ballvalve
  78. // // 压风机 forcFan
  79. // // 瓦斯巡检 gaspatrol
  80. // // 防火门 firedoor
  81. // // 隔爆设施 explosionProof
  82. // // 瓦斯管道阀门 gasvalve
  83. // list({
  84. // types: configs.value
  85. // .filter((e) => e.deviceType)
  86. // .map((e) => e.deviceType)
  87. // .join(','),
  88. // }).then(updateData);
  89. // });
  90. // }
  91. // function initInterval() {
  92. // setInterval(() => {
  93. // list({
  94. // types: configs.value
  95. // .filter((e) => e.deviceType)
  96. // .map((e) => e.deviceType)
  97. // .join(','),
  98. // }).then(updateData);
  99. // }, 60000);
  100. // }
  101. // watch(
  102. // () => route.query,
  103. // () => {
  104. // if (route.query.deviceType) {
  105. // // 仅需要展示子应用,模拟 unmounted
  106. // clearInterval(interval);
  107. // } else {
  108. // // 模拟 mounted
  109. // refresh();
  110. // initInterval();
  111. // }
  112. // }
  113. // );
  114. onMounted(() => {
  115. fetchConfigs('dust-green').then(() => {
  116. configs.value = testConfigDustGreen;
  117. updateEnhancedConfigs(configs.value);
  118. Promise.resolve(BDDustMock).then(updateData);
  119. // getHomeData({}).then(updateData);
  120. });
  121. // setInterval(() => {
  122. // getHomeData({}).then(updateData);
  123. // }, 60000);
  124. });
  125. onUnmounted(() => {
  126. clearInterval(interval);
  127. });
  128. </script>
  129. <style lang="less" scoped>
  130. @import '/@/design/theme.less';
  131. @font-face {
  132. font-family: 'douyuFont';
  133. src: url('/@/assets/font/douyuFont.otf');
  134. }
  135. @{theme-deepblue} {
  136. .company-home {
  137. --image-modal-top: url('/@/assets/images/themify/deepblue/vent/home/modal-top.png');
  138. }
  139. }
  140. .company-home {
  141. --image-modal-top: url('/@/assets/images/vent/home/modal-top.png');
  142. --image-monitor-realtime: url('/@/assets/images/company/monitor-realtime.png');
  143. --image-monitor-doc: url('/@/assets/images/company/monitor-doc.png');
  144. --image-monitor-goto: url('/@/assets/images/company/monitor-goto.png');
  145. width: 100%;
  146. height: 100%;
  147. color: @white;
  148. position: relative;
  149. background: #181b24;
  150. .main-container {
  151. width: 100%;
  152. height: 100%;
  153. margin: 0px 15px;
  154. .left-area {
  155. position: absolute;
  156. left: 0;
  157. top: 0;
  158. width: 420px;
  159. height: 100%;
  160. padding: 15px;
  161. background: url('../../../../assets/images/home-green/green-bd-left.png') no-repeat;
  162. background-size: 100% 100%;
  163. box-sizing: border-box;
  164. overflow-y: auto;
  165. }
  166. .bottom-area {
  167. position: absolute;
  168. left: 435px;
  169. bottom: 0;
  170. width: calc(100% - 435px);
  171. height: 290px;
  172. padding: 15px;
  173. background: url('../../../../assets/images/home-green/green-bd-bottom.png') no-repeat;
  174. background-size: 100% 100%;
  175. box-sizing: border-box;
  176. }
  177. .right-area {
  178. position: absolute;
  179. right: 0px;
  180. top: 0px;
  181. width: 420px;
  182. height: calc(100% - 305px);
  183. padding: 15px 15px 0px 15px;
  184. background: url('../../../../assets/images/home-green/green-bd-left.png') no-repeat;
  185. background-size: 100% 100%;
  186. box-sizing: border-box;
  187. overflow-y: auto;
  188. }
  189. }
  190. // .module-left {
  191. // position: absolute;
  192. // width: 450px;
  193. // height: 280px;
  194. // left: 0;
  195. // }
  196. // .module-right {
  197. // position: absolute;
  198. // width: 450px;
  199. // height: 280px;
  200. // right: 0;
  201. // }
  202. // .module-bottom {
  203. // position: absolute;
  204. // width: 1000px;
  205. // height: 280px;
  206. // }
  207. .module-dropdown {
  208. padding: 5px;
  209. background-image: @vent-configurable-dropdown;
  210. border-bottom: 2px solid @vent-configurable-home-light-border;
  211. color: @vent-font-color;
  212. position: absolute;
  213. top: 60px;
  214. right: 480px;
  215. }
  216. .module-dropdown-original {
  217. padding: 10px;
  218. background-image: @vent-configurable-dropdown;
  219. border-bottom: 2px solid @vent-configurable-home-light-border;
  220. color: @vent-font-color;
  221. position: absolute;
  222. top: 70px;
  223. right: 460px;
  224. }
  225. .module-trigger-button {
  226. color: @vent-font-color;
  227. background-image: @vent-configurable-dropdown;
  228. border: none;
  229. border-bottom: 2px solid @vent-configurable-home-light-border;
  230. }
  231. .realtime-mode {
  232. background-image: var(--image-monitor-realtime);
  233. }
  234. .module-monitor-bar {
  235. position: absolute;
  236. top: 100px;
  237. width: 1000px;
  238. height: 200px;
  239. left: calc(50% - 500px);
  240. }
  241. }
  242. :deep(.loading-box) {
  243. position: unset;
  244. }
  245. </style>