51 lines
1.0 KiB
Vue
51 lines
1.0 KiB
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: rgba(47, 203, 255, 0.75);
|
|
width: 100%;
|
|
// height: 1178px;
|
|
height: 1469px;
|
|
position: absolute;
|
|
// bottom: 690px;
|
|
// top: 2160px;
|
|
// top: 1570px;
|
|
left: 0;
|
|
}
|
|
|
|
// section::before {
|
|
// // content: '监控组 2';
|
|
// content: '';
|
|
// font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, "微软雅黑", Arial, Helvetica, sans-serif;
|
|
// font-size: adjust(h(64px));
|
|
// font-weight: 400;
|
|
// letter-spacing: 1px;
|
|
// position: absolute;
|
|
// color: $main-color;
|
|
// top: 0;
|
|
// left: 0;
|
|
// }
|
|
</style>
|