|
@@ -14,29 +14,65 @@
|
|
|
</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">低风险</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('https://bing.cn')">
|
|
|
+ <div>智能</div>
|
|
|
+ <div>灌浆系统</div>
|
|
|
+ </div>
|
|
|
+ <div class="tcontent-r" @click="redirectTo('https://bing.cn')">
|
|
|
+ <div>智能</div>
|
|
|
+ <div>注氟系统</div>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
<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"
|
|
|
- @click="redirectTo(cfg)"
|
|
|
- >
|
|
|
- <Content v-bind="cfg" />
|
|
|
- </ModuleOriginal>
|
|
|
+ />
|
|
|
</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"
|
|
|
- @click="redirectTo(cfg)"
|
|
|
- >
|
|
|
- <Content v-bind="cfg" />
|
|
|
- </ModuleCommon>
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ <template v-else-if="isBD">
|
|
|
+ <ModuleBD
|
|
|
+ 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>
|
|
|
<!-- 下面是正常展示的各新版模块 -->
|
|
@@ -45,12 +81,11 @@
|
|
|
: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"
|
|
|
- @click="redirectTo(cfg)"
|
|
|
- >
|
|
|
- <Content v-bind="cfg" />
|
|
|
- </ModuleEnhanced>
|
|
|
+ />
|
|
|
<!-- 下面是用于呼出已隐藏的模块的按钮 -->
|
|
|
<div class="pos-absolute top-70px left-460px">
|
|
|
<div v-for="(item, i) in hiddenList" :key="`vvhchg${i}`">
|
|
@@ -69,16 +104,14 @@
|
|
|
import ModuleEnhanced from './components/ModuleEnhanced.vue';
|
|
|
import ModuleOriginal from './components/ModuleOriginal.vue';
|
|
|
import ModuleCommon from './components/ModuleCommon.vue';
|
|
|
- import Content from './components/content.vue';
|
|
|
- import { testConfigA } from './configurable.data';
|
|
|
- import { useRoute } from 'vue-router';
|
|
|
- import { openWindow } from '/@/utils';
|
|
|
+ import ModuleBD from './components/ModuleBD.vue';
|
|
|
+ import { testConfigBDDust } from './configurable.data';
|
|
|
|
|
|
interface EnhancedConfig extends Config {
|
|
|
visible: boolean;
|
|
|
}
|
|
|
|
|
|
- const mainTitle = ref('智能通风管控系统');
|
|
|
+ const mainTitle = ref('保德煤矿粉尘灾害预警系统');
|
|
|
|
|
|
// const moduleCodes = ['fanlocal', 'fanmain' /** 'vc', 'ar', 'va', 'ws', 'dw' */];
|
|
|
|
|
@@ -87,25 +120,13 @@
|
|
|
const hiddenList = computed(() => {
|
|
|
return enhancedConfigs.value.filter((e) => e.visible === false);
|
|
|
});
|
|
|
- const { configs, isOriginal, isCommon, fetchConfigs } = useInitConfigs();
|
|
|
-
|
|
|
- function redirectTo(config: Config) {
|
|
|
- const { to } = config.moduleData;
|
|
|
- if (!to) return;
|
|
|
- openWindow(to);
|
|
|
- }
|
|
|
+ const { configs, isOriginal, isCommon, isBD, fetchConfigs } = useInitConfigs();
|
|
|
|
|
|
onMounted(() => {
|
|
|
- const query = useRoute().query;
|
|
|
- if (query.fire) {
|
|
|
- mainTitle.value = '智能火灾管控系统';
|
|
|
- }
|
|
|
- if (query.gas) {
|
|
|
- mainTitle.value = '智能瓦斯管控系统';
|
|
|
- }
|
|
|
// configs.value = testConfigB;
|
|
|
fetchConfigs().then(() => {
|
|
|
- configs.value.push(...testConfigA);
|
|
|
+ configs.value = testConfigBDDust;
|
|
|
+ // configs.value.push(...testConfigBDDust);
|
|
|
enhancedConfigs.value = configs.value.map((c) => {
|
|
|
return {
|
|
|
visible: true,
|
|
@@ -114,6 +135,10 @@
|
|
|
});
|
|
|
});
|
|
|
});
|
|
|
+
|
|
|
+ // function redirectTo(url) {
|
|
|
+ // window.open(url);
|
|
|
+ // }
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
@font-face {
|
|
@@ -126,11 +151,12 @@
|
|
|
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/home-container/configurable/main_title_bg.png') no-repeat center;
|
|
|
+ background: url(/@/assets/images/home-container/configurable/firehome/fire-title.png) no-repeat center;
|
|
|
position: absolute;
|
|
|
z-index: 1;
|
|
|
.main-title {
|
|
@@ -186,4 +212,111 @@
|
|
|
border-bottom: 2px solid #3df6ff;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .left-t {
|
|
|
+ position: absolute;
|
|
|
+ height: 115px;
|
|
|
+ top: 30px;
|
|
|
+ width: 450px;
|
|
|
+ background: url('/@/assets/images/home-container/configurable/firehome/qkjaq.png') no-repeat 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: 200px;
|
|
|
+ right: 0;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ width: 450px;
|
|
|
+ background: url('/@/assets/images/home-container/configurable/firehome/common-border2.png') no-repeat center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-around;
|
|
|
+
|
|
|
+ .tcontent-l {
|
|
|
+ flex: 1;
|
|
|
+ height: 70%;
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: bold;
|
|
|
+ background-image: url(/@/assets/images/home-container/configurable/firehome/img-5.png),
|
|
|
+ url(/@/assets/images/home-container/configurable/firehome/ggxt.png);
|
|
|
+ background-size:
|
|
|
+ auto 100%,
|
|
|
+ auto auto;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position:
|
|
|
+ center,
|
|
|
+ center top;
|
|
|
+ text-align: center;
|
|
|
+ padding-top: 40px;
|
|
|
+ line-height: 50px;
|
|
|
+ }
|
|
|
+ .tcontent-r {
|
|
|
+ flex: 1;
|
|
|
+ height: 70%;
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: bold;
|
|
|
+ background-image: url(/@/assets/images/home-container/configurable/firehome/img-5.png),
|
|
|
+ url(/@/assets/images/home-container/configurable/firehome/zjxt.png);
|
|
|
+ background-size:
|
|
|
+ auto 100%,
|
|
|
+ auto auto;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position:
|
|
|
+ center,
|
|
|
+ center top;
|
|
|
+ text-align: center;
|
|
|
+ padding-top: 40px;
|
|
|
+ line-height: 50px;
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|