update fault

This commit is contained in:
lb 2023-06-07 14:48:05 +08:00
parent eeba8714f7
commit 868e14a41b
4 changed files with 49 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -0,0 +1,44 @@
<template>
<section class="fault-analysis">
</section>
</template>
<script>
// import { mapState } from "vuex";
export default {
name: "FaultAnalysis",
props: {},
components: {},
data() {
return {};
},
computed: {
// ...mapState(["kilnWaterIn", "waterInTemp"]),
},
};
</script>
<style scoped lang="scss">
@import "../../assets/styles/functions";
section {
background: url('../../assets/fault-analysis.png') left 144px top 4px / 79% 54% no-repeat, #fcc7;
width: adjust(w(1900px));
height: adjust(h(1260px));
position: absolute;
top: adjust(h(430px));
left: adjust(w(3700px));
}
section::before {
content: '缺陷分析';
font-size: adjust(h(64px));
letter-spacing: 1px;
position: absolute;
color: $main-color;
top: 0;
left: 0;
}
</style>

View File

@ -112,6 +112,7 @@ header {
margin-left: adjust(w(3800px));
height: adjust(h(130px));
font-size: adjust(h(100px));
font-weight: 600;
text-align: center;
color: lighten($main-color, 8);
letter-spacing: 2px;

View File

@ -3,6 +3,8 @@
<!-- 监控组 -->
<MonitorGroup />
<!-- 缺陷分析 -->
<FaultAnalysis />
<div class="video-crash" v-if="false"></div>
@ -125,6 +127,7 @@
// import FanRuntime from "../boxes/FanRuntime.vue";
import AreaOne from "../isolate-area-1/Area.vue";
import MonitorGroup from '../groups/monitor.vue'
import FaultAnalysis from '../groups/fault.vue'
// import Container from './Container.vue'
import { mapMutations, mapState } from "vuex";
@ -134,6 +137,7 @@ export default {
name: "Main",
components: {
MonitorGroup,
FaultAnalysis,
AreaOne,
// KilnRuntime,
// KilnPressure,