|
@@ -61,12 +61,11 @@
|
|
|
</template>
|
|
|
<div style="width: 1000px; height: 570px; position: absolute; left: calc(50% - 500px); top: 60px">
|
|
|
<VentModal />
|
|
|
- <img
|
|
|
- :src="isDataRealTime ? '/@/assets/images/company/monitor-realtime.png' : '/@/assets/images/company/monitor-doc.png'"
|
|
|
- alt="切换数据模式"
|
|
|
- class="w-34px h-34px pos-absolute right-5px bottom-5px z-5"
|
|
|
- @click="switchDataMode"
|
|
|
- />
|
|
|
+ <div :class="{ 'realtime-mode': isDataRealTime }" alt="切换数据模式" class="switch-button report-mode right-50px" @click="switchDataMode"></div>
|
|
|
+ <div
|
|
|
+ class="switch-button icon-goto right-5px"
|
|
|
+ @click="redirectTo('/micro-vent-3dModal/dashboard/analysis?type=model3D&deviceType=model3D')"
|
|
|
+ ></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -101,6 +100,10 @@
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ function redirectTo(url) {
|
|
|
+ window.open(url);
|
|
|
+ }
|
|
|
+
|
|
|
onMounted(() => {
|
|
|
fetchConfigs(isDataRealTime.value ? 'vent_realtime' : 'vent').then(() => {
|
|
|
// configs.value = isDataRealTime.value ? testConfigVentRealtime : testConfigVent;
|
|
@@ -127,12 +130,16 @@
|
|
|
|
|
|
@{theme-deepblue} {
|
|
|
.company-home {
|
|
|
- --image-modal-top: url('@/assets/images/themify/deepblue/vent/home/modal-top.png');
|
|
|
+ --image-modal-top: url('/@/assets/images/themify/deepblue/vent/home/modal-top.png');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.company-home {
|
|
|
- --image-modal-top: url('@/assets/images/vent/home/modal-top.png');
|
|
|
+ --image-modal-top: url('/@/assets/images/vent/home/modal-top.png');
|
|
|
+ --image-monitor-realtime: url('/@/assets/images/company/monitor-realtime.png');
|
|
|
+ --image-monitor-doc: url('/@/assets/images/company/monitor-doc.png');
|
|
|
+ --image-monitor-goto: url('/@/assets/images/company/monitor-goto.png');
|
|
|
+
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
color: @white;
|
|
@@ -197,6 +204,26 @@
|
|
|
border: none;
|
|
|
border-bottom: 2px solid @vent-configurable-home-light-border;
|
|
|
}
|
|
|
+
|
|
|
+ .switch-button {
|
|
|
+ width: 34px;
|
|
|
+ height: 34px;
|
|
|
+ position: absolute;
|
|
|
+ // right: 5px;
|
|
|
+ bottom: 5px;
|
|
|
+ z-index: 5;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ .report-mode {
|
|
|
+ background-image: var(--image-monitor-doc);
|
|
|
+ }
|
|
|
+ .realtime-mode {
|
|
|
+ background-image: var(--image-monitor-realtime);
|
|
|
+ }
|
|
|
+ .icon-goto {
|
|
|
+ background-image: var(--image-monitor-goto);
|
|
|
+ }
|
|
|
}
|
|
|
:deep(.loading-box) {
|
|
|
position: unset;
|