|
@@ -1,7 +1,11 @@
|
|
|
<!-- eslint-disable vue/multi-word-component-names -->
|
|
|
<template>
|
|
|
<div class="company-home">
|
|
|
+ <div style="width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 0">
|
|
|
+ <VentModal />
|
|
|
+ </div>
|
|
|
<div v-if="!route.query.embed" class="top-bg">
|
|
|
+ <!-- <img style="width: 300px; height: 40px; position: fixed; left: 5px; top: 5px" src="./meeee.png" /> -->
|
|
|
<div class="main-title">{{ mainTitle }}</div>
|
|
|
</div>
|
|
|
<!-- <a-dropdown class="module-dropdown" :class="{ 'module-dropdown-original': isOriginal }" :trigger="['click']" placement="bottomRight">
|
|
@@ -59,9 +63,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <div style="width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 0">
|
|
|
- <VentModal />
|
|
|
- </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
@@ -76,7 +77,7 @@
|
|
|
import VentModal from '/@/components/vent/micro/ventModal.vue';
|
|
|
import { getHomeData } from './configurable.api';
|
|
|
import { useRoute } from 'vue-router';
|
|
|
- // import { testConfigVent } from './configurable.data';
|
|
|
+ // import { testConfigSY } from './configurable.data.wz';
|
|
|
|
|
|
const { configs, isOriginal, isCommon, fetchConfigs } = useInitConfigs();
|
|
|
const { mainTitle, enhancedConfigs, hiddenList, data, updateData, updateEnhancedConfigs } = useInitPage('智能通风管控系统');
|
|
@@ -85,7 +86,7 @@
|
|
|
|
|
|
onMounted(() => {
|
|
|
fetchConfigs('vent').then(() => {
|
|
|
- // configs.value = testConfigVent;
|
|
|
+ // configs.value = testConfigSY;
|
|
|
updateEnhancedConfigs(configs.value);
|
|
|
|
|
|
getHomeData({}).then(updateData);
|