123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <!-- eslint-disable vue/multi-word-component-names -->
- <template>
- <div class="company-home">
- <div class="top-bg">
- <div class="main-title">{{ mainTitle }}</div>
- </div>
- <!-- <a-dropdown class="module-dropdown" :class="{ 'module-dropdown-original': isOriginal }" :trigger="['click']" placement="bottomRight">
- <a class="ant-dropdown-link" @click.prevent>
- 全矿井通风检测
- <CaretDownOutlined />
- </a>
- <template #overlay>
- <MonitorCenter />
- </template>
- </a-dropdown> -->
- <!-- 采用定位方式以避免出现各个模块隐藏时其他模块下移的问题 -->
- <template v-if="isOriginal">
- <ModuleOriginal
- v-for="cfg in configs"
- :key="cfg.deviceType"
- :show-style="cfg.showStyle"
- :module-data="cfg.moduleData"
- :module-name="cfg.moduleName"
- :device-type="cfg.deviceType"
- :visible="true"
- />
- </template>
- <template v-else-if="isCommon">
- <ModuleCommon
- v-for="cfg in configs"
- :key="cfg.deviceType"
- :show-style="cfg.showStyle"
- :module-data="cfg.moduleData"
- :module-name="cfg.moduleName"
- :device-type="cfg.deviceType"
- :visible="true"
- />
- </template>
- <template v-else>
- <!-- 下面是正常展示的各新版模块 -->
- <ModuleEnhanced
- v-for="cfg in enhancedConfigs"
- :key="cfg.deviceType"
- :visible="cfg.visible"
- :show-style="cfg.showStyle"
- :module-data="cfg.moduleData"
- :module-name="cfg.moduleName"
- :device-type="cfg.deviceType"
- @close="cfg.visible = false"
- />
- <!-- 下面是用于呼出已隐藏的模块的按钮 -->
- <div class="pos-absolute top-70px left-460px z-3">
- <div v-for="(item, i) in hiddenList" :key="`vvhchg${i}`">
- <AButton class="module-trigger-button" @click="item.visible = true">{{ item.moduleName }}</AButton>
- </div>
- </div>
- </template>
- <div style="width: 1000px; height: 570px; position: absolute; left: calc(50% - 500px); top: 60px">
- <VentModal />
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import { computed, onMounted, ref } from 'vue';
- // import { CaretDownOutlined } from '@ant-design/icons-vue';
- // import MonitorCenter from './components/MonitorCenter.vue';
- import { useInitConfigs } from './hooks/useInit';
- import { Config } from '../../deviceManager/configurationTable/types';
- import ModuleEnhanced from './components/ModuleEnhanced.vue';
- import ModuleOriginal from './components/ModuleOriginal.vue';
- import ModuleCommon from './components/ModuleCommon.vue';
- // import { testConfigBuErTai } from './configurable.data';
- // import { useRoute } from 'vue-router';
- import VentModal from '/@/components/vent/micro/ventModal.vue';
- interface EnhancedConfig extends Config {
- visible: boolean;
- }
- const mainTitle = ref('智能粉尘管控系统');
- // const moduleCodes = ['fanlocal', 'fanmain' /** 'vc', 'ar', 'va', 'ws', 'dw' */];
- const hiddenList = computed(() => {
- return enhancedConfigs.value.filter((e) => e.visible === false);
- });
- const { configs, isOriginal, isCommon, fetchConfigs } = useInitConfigs();
- const enhancedConfigs = ref<EnhancedConfig[]>([]);
- onMounted(() => {
- // configs.value = testConfigB;
- fetchConfigs('dust').then(() => {
- enhancedConfigs.value = configs.value.map((c) => {
- return {
- visible: true,
- ...c,
- };
- });
- });
- });
- </script>
- <style lang="less" scoped>
- @font-face {
- font-family: 'douyuFont';
- src: url('../../../../assets/font/douyuFont.otf');
- }
- .company-home {
- width: 100%;
- height: 100%;
- color: @white;
- position: relative;
- // background: url('@/assets/images/home-container/configurable/firehome/bg.png') no-repeat center;
- .top-bg {
- width: 100%;
- height: 56px;
- background: url('@/assets/images/vent/home/modal-top.png') no-repeat center;
- position: absolute;
- z-index: 1;
- .main-title {
- height: 56px;
- font-family: 'douyuFont';
- font-size: 20px;
- letter-spacing: 2px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- // .module-left {
- // position: absolute;
- // width: 450px;
- // height: 280px;
- // left: 0;
- // }
- // .module-right {
- // position: absolute;
- // width: 450px;
- // height: 280px;
- // right: 0;
- // }
- // .module-bottom {
- // position: absolute;
- // width: 1000px;
- // height: 280px;
- // }
- .module-dropdown {
- padding: 10px;
- background-image: linear-gradient(to bottom, #036886, #072a40);
- border-bottom: 2px solid #3df6ff;
- color: #fff;
- position: absolute;
- top: 70px;
- right: 460px;
- }
- .module-dropdown-original {
- padding: 10px;
- background-image: linear-gradient(to bottom, #036886, #072a40);
- border-bottom: 2px solid #3df6ff;
- color: #fff;
- position: absolute;
- top: 70px;
- right: 460px;
- }
- .module-trigger-button {
- color: #fff;
- background-image: linear-gradient(to bottom, #036886, #072a40);
- border: none;
- border-bottom: 2px solid #3df6ff;
- }
- }
- :deep(.loading-box) {
- position: unset;
- }
- </style>
|