123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <!-- 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> -->
- <!-- 采用定位方式以避免出现各个模块隐藏时其他模块下移的问题 -->
- <div class="left-t">
- <div class="tcontent-area">
- <div class="tcontent-l">
- <div>监测</div>
- <div>区域</div>
- </div>
- <div class="tcontent-c">
- <div style="margin-bottom: 15px; color: #009bff; font-size: 24px; font-weight: bolder; letter-spacing: 10px">
- {{ data.fireAllMineWarn }}
- </div>
- <div style="color: #fff; font-size: 12px">自燃倾向性等级 : 自燃</div>
- </div>
- <div class="tcontent-r">
- <div>火灾</div>
- <div>风险</div>
- </div>
- </div>
- </div>
- <div class="right-t">
- <div class="tcontent-l" @click="redirectTo('/grout-home')">
- <div>智能注浆系统</div>
- </div>
- <div class="tcontent-r" @click="redirectTo('/nitrogen-home')">
- <div>智能注氮系统</div>
- </div>
- </div>
- <ModuleBD
- v-for="cfg in cfgs"
- :key="cfg.deviceType"
- :show-style="cfg.showStyle"
- :module-data="cfg.moduleData"
- :module-name="cfg.moduleName"
- :device-type="cfg.deviceType"
- :data="data"
- :visible="true"
- />
- <ModuleBDDual
- v-if="cfgA && cfgB"
- :show-style="cfgA.showStyle"
- :module-data-a="cfgA.moduleData"
- :module-name-a="cfgA.moduleName"
- :device-type-a="cfgA.deviceType"
- :module-data-b="cfgB.moduleData"
- :module-name-b="cfgB.moduleName"
- :device-type-b="cfgB.deviceType"
- :data="data"
- :visible="true"
- />
- <div style="width: 1000px; height: 550px; position: absolute; left: calc(50% - 500px); top: 60px">
- <VentModal />
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import { computed, onMounted, onUnmounted } from 'vue';
- // import { CaretDownOutlined } from '@ant-design/icons-vue';
- // import MonitorCenter from './components/MonitorCenter.vue';
- import { useInitConfigs, useInitPage } from './hooks/useInit';
- import ModuleBD from './components/ModuleBD.vue';
- import ModuleBDDual from './components/ModuleBDDual.vue';
- import VentModal from '/@/components/vent/micro/ventModal.vue';
- import { getDisHome } from './configurable.api';
- // import { testConfigBDFire } from './configurable.data.bd';
- // import { getToken } from '/@/utils/auth';
- const cfgs = computed(() =>
- configs.value.filter((_, index) => {
- return index !== 4 && index !== 3;
- })
- );
- const cfgA = computed<any>(() =>
- configs.value.find((_, index) => {
- return index === 3;
- })
- );
- const cfgB = computed<any>(() =>
- configs.value.find((_, index) => {
- return index === 4;
- })
- );
- const { configs, devicesTypes, fetchConfigs } = useInitConfigs();
- const { mainTitle, data, updateData } = useInitPage('保德煤矿火灾预警系统');
- let interval: number | undefined;
- // function hideLoading() {
- // loading.value = false;
- // }
- onMounted(() => {
- fetchConfigs('BD_fire').then(() => {
- // configs.value = testConfigBDFire;
- getDisHome({
- dataList: devicesTypes.value.concat('fireAllMineWarn').join(','),
- }).then(updateData);
- });
- setInterval(() => {
- getDisHome({
- dataList: devicesTypes.value.concat('fireAllMineWarn').join(','),
- }).then(updateData);
- }, 60000);
- });
- onUnmounted(() => {
- clearInterval(interval);
- });
- function redirectTo(url) {
- window.open(url);
- }
- </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: 86px;
- background: url(/@/assets/images/home-container/configurable/firehome/fire-title.png) no-repeat center;
- position: absolute;
- z-index: 1;
- .main-title {
- height: 86px;
- font-family: 'douyuFont';
- font-size: 26px;
- letter-spacing: 2px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- // .module-left {
- // position: absolute;
- // width: 440px;
- // height: 280px;
- // left: 0;
- // }
- // .module-right {
- // position: absolute;
- // width: 440px;
- // 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;
- }
- }
- .left-t {
- position: absolute;
- height: 115px;
- top: 40px;
- left: 10px;
- width: 440px;
- background-image: url('/@/assets/images/home-container/configurable/firehome/qkjaq.png');
- background-color: #000723;
- background-repeat: no-repeat;
- background-position: center;
- background-size: 100% 100%;
- .tcontent-area {
- display: flex;
- position: absolute;
- top: 50%;
- left: 0;
- box-sizing: border-box;
- align-items: center;
- justify-content: space-around;
- width: 100%;
- height: 70px;
- padding: 0 15px;
- transform: translate(0, -40%);
- .tcontent-l {
- display: flex;
- flex: 1;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100%;
- color: #9da5aa;
- font-size: 14px;
- font-weight: bold;
- letter-spacing: 2px;
- }
- .tcontent-c {
- display: flex;
- flex: 3;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
- .tcontent-r {
- display: flex;
- flex: 1;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100%;
- color: #9da5aa;
- font-size: 14px;
- font-weight: bold;
- letter-spacing: 2px;
- }
- }
- }
- .right-t {
- position: absolute;
- // height: 160px;
- height: 115px;
- right: 10px;
- top: 50px;
- width: 440px;
- background-image: url('/@/assets/images/home-container/configurable/firehome/common-border2.png');
- background-color: #000723;
- background-repeat: no-repeat;
- background-position: center;
- background-size: 100% 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- z-index: 1;
- .tcontent-l {
- flex: 1;
- height: 100%;
- font-size: 16px;
- font-weight: bold;
- background-image: url(/@/assets/images/home-container/configurable/firehome/znzjxt.png);
- background-size: auto 100%;
- background-repeat: no-repeat;
- background-position: center;
- text-align: center;
- padding-top: 85px;
- }
- .tcontent-r {
- flex: 1;
- height: 100%;
- font-size: 16px;
- font-weight: bold;
- background-image: url(/@/assets/images/home-container/configurable/firehome/znzdxt.png);
- background-size: auto 100%;
- background-repeat: no-repeat;
- background-position: center;
- text-align: center;
- padding-top: 85px;
- }
- }
- :deep(.loading-box) {
- position: unset;
- }
- </style>
|