45 lines
793 B
Vue
45 lines
793 B
Vue
<template>
|
|
<section class="monitor-group-2">
|
|
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
// import { mapState } from "vuex";
|
|
|
|
export default {
|
|
name: "MonitorGroup#2",
|
|
props: {},
|
|
components: {},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {
|
|
// ...mapState(["kilnWaterIn", "waterInTemp"]),
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "../../assets/styles/functions";
|
|
|
|
section {
|
|
background: url('../../assets/middle1.png') left 144px top 4px / 97% 420px no-repeat, #fcc7;
|
|
width: adjust(w(13500px));
|
|
height: adjust(h(1470px));
|
|
position: absolute;
|
|
top: adjust(h(1740px));
|
|
left: adjust(w(3700px));
|
|
}
|
|
|
|
section::before {
|
|
content: '监控组 2';
|
|
font-size: adjust(h(64px));
|
|
letter-spacing: 1px;
|
|
position: absolute;
|
|
color: $main-color;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|