tester.vue 5.7 KB

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