浏览代码

[Style 0000] 通用的可配置首页样式修改

houzekong 1 月之前
父节点
当前提交
3d0256f4d5

+ 4 - 3
src/views/vent/home/configurable/dust.vue

@@ -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>

+ 4 - 3
src/views/vent/home/configurable/fire.vue

@@ -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>

+ 6 - 5
src/views/vent/home/configurable/vent.vue

@@ -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);