update fault
This commit is contained in:
parent
eeba8714f7
commit
868e14a41b
BIN
src/assets/fault-analysis.png
Normal file
BIN
src/assets/fault-analysis.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 56 KiB |
44
src/components/groups/fault.vue
Normal file
44
src/components/groups/fault.vue
Normal 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>
|
@ -112,6 +112,7 @@ header {
|
|||||||
margin-left: adjust(w(3800px));
|
margin-left: adjust(w(3800px));
|
||||||
height: adjust(h(130px));
|
height: adjust(h(130px));
|
||||||
font-size: adjust(h(100px));
|
font-size: adjust(h(100px));
|
||||||
|
font-weight: 600;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: lighten($main-color, 8);
|
color: lighten($main-color, 8);
|
||||||
letter-spacing: 2px;
|
letter-spacing: 2px;
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
<!-- 监控组 -->
|
<!-- 监控组 -->
|
||||||
<MonitorGroup />
|
<MonitorGroup />
|
||||||
|
|
||||||
|
<!-- 缺陷分析 -->
|
||||||
|
<FaultAnalysis />
|
||||||
|
|
||||||
<div class="video-crash" v-if="false"></div>
|
<div class="video-crash" v-if="false"></div>
|
||||||
|
|
||||||
@ -125,6 +127,7 @@
|
|||||||
// import FanRuntime from "../boxes/FanRuntime.vue";
|
// import FanRuntime from "../boxes/FanRuntime.vue";
|
||||||
import AreaOne from "../isolate-area-1/Area.vue";
|
import AreaOne from "../isolate-area-1/Area.vue";
|
||||||
import MonitorGroup from '../groups/monitor.vue'
|
import MonitorGroup from '../groups/monitor.vue'
|
||||||
|
import FaultAnalysis from '../groups/fault.vue'
|
||||||
// import Container from './Container.vue'
|
// import Container from './Container.vue'
|
||||||
import { mapMutations, mapState } from "vuex";
|
import { mapMutations, mapState } from "vuex";
|
||||||
|
|
||||||
@ -134,6 +137,7 @@ export default {
|
|||||||
name: "Main",
|
name: "Main",
|
||||||
components: {
|
components: {
|
||||||
MonitorGroup,
|
MonitorGroup,
|
||||||
|
FaultAnalysis,
|
||||||
AreaOne,
|
AreaOne,
|
||||||
// KilnRuntime,
|
// KilnRuntime,
|
||||||
// KilnPressure,
|
// KilnPressure,
|
||||||
|
Loading…
Reference in New Issue
Block a user