update environ
This commit is contained in:
parent
868e14a41b
commit
6a53a6630c
44
src/components/groups/environ.vue
Normal file
44
src/components/groups/environ.vue
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<template>
|
||||||
|
<section class="environ-analysis">
|
||||||
|
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// import { mapState } from "vuex";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "EnviroAnalysis",
|
||||||
|
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(15300px));
|
||||||
|
}
|
||||||
|
|
||||||
|
section::before {
|
||||||
|
content: '环境浓度';
|
||||||
|
font-size: adjust(h(64px));
|
||||||
|
letter-spacing: 1px;
|
||||||
|
position: absolute;
|
||||||
|
color: $main-color;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
</style>
|
@ -6,10 +6,13 @@
|
|||||||
<!-- 缺陷分析 -->
|
<!-- 缺陷分析 -->
|
||||||
<FaultAnalysis />
|
<FaultAnalysis />
|
||||||
|
|
||||||
|
<!-- 环境浓度 -->
|
||||||
|
<Environ />
|
||||||
|
|
||||||
<div class="video-crash" v-if="false"></div>
|
<div class="video-crash" v-if="false"></div>
|
||||||
|
|
||||||
<div class="eq-main absolute">
|
<div class="eq-main absolute">
|
||||||
<div
|
<!-- <div
|
||||||
class="arrow ar-top-left"
|
class="arrow ar-top-left"
|
||||||
:class="topLeftArrowRolling === '运行' ? 'ar-running' : ''"
|
:class="topLeftArrowRolling === '运行' ? 'ar-running' : ''"
|
||||||
></div>
|
></div>
|
||||||
@ -24,7 +27,7 @@
|
|||||||
<div
|
<div
|
||||||
class="arrow ar-bottom-right"
|
class="arrow ar-bottom-right"
|
||||||
:class="bottomRightArrowRolling === '运行' ? 'ar-running' : ''"
|
:class="bottomRightArrowRolling === '运行' ? 'ar-running' : ''"
|
||||||
></div>
|
></div> -->
|
||||||
|
|
||||||
<!-- <div class="swd onekb">
|
<!-- <div class="swd onekb">
|
||||||
<div class="swd-box">
|
<div class="swd-box">
|
||||||
@ -128,6 +131,7 @@
|
|||||||
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 FaultAnalysis from '../groups/fault.vue'
|
||||||
|
import Environ from '../groups/environ.vue'
|
||||||
// import Container from './Container.vue'
|
// import Container from './Container.vue'
|
||||||
import { mapMutations, mapState } from "vuex";
|
import { mapMutations, mapState } from "vuex";
|
||||||
|
|
||||||
@ -137,6 +141,7 @@ export default {
|
|||||||
name: "Main",
|
name: "Main",
|
||||||
components: {
|
components: {
|
||||||
MonitorGroup,
|
MonitorGroup,
|
||||||
|
Environ,
|
||||||
FaultAnalysis,
|
FaultAnalysis,
|
||||||
AreaOne,
|
AreaOne,
|
||||||
// KilnRuntime,
|
// KilnRuntime,
|
||||||
|
Loading…
Reference in New Issue
Block a user