update 窑炉压力
This commit is contained in:
parent
6d4fe8a456
commit
28c808602d
BIN
src/assets/speed.png
Normal file
BIN
src/assets/speed.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 94 KiB |
@ -1,19 +1,96 @@
|
|||||||
<template>
|
<template>
|
||||||
<!-- 窑炉压力 -->
|
<!-- 窑炉压力 -->
|
||||||
<div></div>
|
<Container usage="NumberOrDate">
|
||||||
|
<SubContainer title="窑炉压力" icon="docs" padding="17px">
|
||||||
|
<div class="pressure flex flex-col flex-start">
|
||||||
|
<div class="time flex flex-center">
|
||||||
|
<DigitalBox
|
||||||
|
class="time--item"
|
||||||
|
v-for="(item, index) in [9, 9, 9]"
|
||||||
|
:key="index"
|
||||||
|
:value="item"
|
||||||
|
:wider="true"
|
||||||
|
/>
|
||||||
|
<span class="unit">Kpa</span>
|
||||||
|
</div>
|
||||||
|
<div class="text">窑炉压力值</div>
|
||||||
|
</div>
|
||||||
|
</SubContainer>
|
||||||
|
</Container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import Container from "../layout/Container.vue";
|
||||||
|
import SubContainer from "../layout/SubContainer.vue";
|
||||||
|
import DigitalBox from "../common/DigitalBox.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "KilnPressure",
|
name: "KilnPressure",
|
||||||
props: {},
|
props: {},
|
||||||
|
components: { Container, SubContainer, DigitalBox },
|
||||||
data() {
|
data() {
|
||||||
return {};
|
return {};
|
||||||
},
|
},
|
||||||
created() {},
|
|
||||||
mounted() {},
|
|
||||||
methods: {},
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped lang="scss">
|
||||||
|
@import "../../assets/styles/functions";
|
||||||
|
|
||||||
|
.pressure {
|
||||||
|
background: url(../../assets/speed.png) no-repeat;
|
||||||
|
background-size: auto 85%;
|
||||||
|
background-position: bottom 60% right -8%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.time {
|
||||||
|
// background: #eee;
|
||||||
|
margin: 12px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.time--item:not(:last-child) {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.unit {
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: 20px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
align-self: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flex-start {
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
padding: 12px 0;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 23px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 10;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text::after {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 10px;
|
||||||
|
height: 4px;
|
||||||
|
width: 100%;
|
||||||
|
/* 渐变色 */
|
||||||
|
background: radial-gradient(
|
||||||
|
ellipse at center,
|
||||||
|
#6fe2ff,
|
||||||
|
#6fe2ffc0,
|
||||||
|
#52cbef80,
|
||||||
|
#52cbef30,
|
||||||
|
#52cbef00,
|
||||||
|
transparent
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@ -57,6 +57,7 @@ export default {
|
|||||||
font-size: 23px;
|
font-size: 23px;
|
||||||
letter-spacing: 4px;
|
letter-spacing: 4px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
z-index: 10;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,11 +65,20 @@ export default {
|
|||||||
content: "";
|
content: "";
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 10%;
|
z-index: 0;
|
||||||
bottom: 16px;
|
left: 12%;
|
||||||
height: 3px;
|
bottom: 10px;
|
||||||
width: 80%;
|
height: 4px;
|
||||||
|
width: 76%;
|
||||||
/* 渐变色 */
|
/* 渐变色 */
|
||||||
background: linear-gradient(to left, #8ae7f800, #6fe2fff0, #52cbef00);
|
background: radial-gradient(
|
||||||
|
ellipse at center,
|
||||||
|
#6fe2ff,
|
||||||
|
#6fe2ffc0,
|
||||||
|
#52cbef80,
|
||||||
|
#52cbef30,
|
||||||
|
#52cbef00,
|
||||||
|
transparent
|
||||||
|
);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="digit-box" :class="value in '0123456789'.split('') ? 'digit' : 'zhHans'">
|
<div
|
||||||
|
class="digit-box"
|
||||||
|
:class="[
|
||||||
|
value in '0123456789'.split('') ? 'digit' : 'zhHans',
|
||||||
|
wider ? 'another-hw' : '',
|
||||||
|
]"
|
||||||
|
>
|
||||||
{{ value }}
|
{{ value }}
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -12,6 +18,10 @@ export default {
|
|||||||
type: String,
|
type: String,
|
||||||
default: "0",
|
default: "0",
|
||||||
},
|
},
|
||||||
|
wider: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {};
|
return {};
|
||||||
@ -36,7 +46,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.digit {
|
.digit {
|
||||||
font-family: '站酷庆科黄油体', sans-serif;
|
font-family: "站酷庆科黄油体", sans-serif;
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
line-height: 39px;
|
line-height: 39px;
|
||||||
}
|
}
|
||||||
@ -45,4 +55,14 @@ export default {
|
|||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 48px;
|
line-height: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.another-hw {
|
||||||
|
height: h(72px);
|
||||||
|
width: w(62px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.another-hw.digit {
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 32px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<main class="relative">
|
<main class="">
|
||||||
<AreaOne v-if="false" />
|
<AreaOne v-if="false" />
|
||||||
<!-- <Container :usage="'NumberOrDate'" />
|
<!-- <Container :usage="'NumberOrDate'" />
|
||||||
<Container :usage="'Table'" />
|
<Container :usage="'Table'" />
|
||||||
@ -10,7 +10,7 @@
|
|||||||
<KilnRuntime />
|
<KilnRuntime />
|
||||||
</div>
|
</div>
|
||||||
<div class="absolute left kiln-pressure">
|
<div class="absolute left kiln-pressure">
|
||||||
<KilnRuntime />
|
<KilnPressure />
|
||||||
</div>
|
</div>
|
||||||
<div class="absolute left fan-runtime">
|
<div class="absolute left fan-runtime">
|
||||||
<KilnRuntime />
|
<KilnRuntime />
|
||||||
@ -21,19 +21,17 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import KilnRuntime from "../boxes/KilnRuntime.vue";
|
import KilnRuntime from "../boxes/KilnRuntime.vue";
|
||||||
|
import KilnPressure from "../boxes/KilnPressure.vue";
|
||||||
import AreaOne from "../isolate-area-1/Area.vue";
|
import AreaOne from "../isolate-area-1/Area.vue";
|
||||||
// import Container from './Container.vue'
|
// import Container from './Container.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Main",
|
name: "Main",
|
||||||
components: { AreaOne, KilnRuntime },
|
components: { AreaOne, KilnRuntime, KilnPressure },
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
return {};
|
return {};
|
||||||
},
|
}
|
||||||
created() {},
|
|
||||||
mounted() {},
|
|
||||||
methods: {},
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -48,14 +46,17 @@ main {
|
|||||||
|
|
||||||
|
|
||||||
.kiln-runtime {
|
.kiln-runtime {
|
||||||
top: 0;
|
top: h(200px);
|
||||||
|
left: w(60px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.kiln-pressure {
|
.kiln-pressure {
|
||||||
top: 300px;
|
top: h(618px);
|
||||||
|
left: w(60px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.fan-runtime {
|
.fan-runtime {
|
||||||
top: 600px;
|
top: h(1036px);
|
||||||
|
left: w(60px);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -31,7 +31,8 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
iconClass: {
|
iconClass: {
|
||||||
clock: 'icon-clock'
|
clock: 'icon-clock',
|
||||||
|
docs: 'icon-docs'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -56,6 +57,11 @@ export default {
|
|||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon-docs {
|
||||||
|
background: url(../../assets/docs.png);
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
/* margin: 12px 0; */
|
/* margin: 12px 0; */
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
|
Loading…
Reference in New Issue
Block a user