中建四局(质量管理):完成标养室培养布局
This commit is contained in:
parent
9c7a22ee39
commit
2f803d09b5
@ -41,7 +41,7 @@ if (process.env.NODE_ENV == 'development') {
|
|||||||
// tag: 本地
|
// tag: 本地
|
||||||
// axios.defaults.baseURL = 'http://192.168.34.174:6023/' // 老大本地
|
// axios.defaults.baseURL = 'http://192.168.34.174:6023/' // 老大本地
|
||||||
// axios.defaults.baseURL = 'http://192.168.34.125:6023/' //杨意本地 http/1.1
|
// axios.defaults.baseURL = 'http://192.168.34.125:6023/' //杨意本地 http/1.1
|
||||||
axios.defaults.baseURL = 'http://192.168.34.216:6023/' // 邱平毅本地
|
axios.defaults.baseURL = 'http://192.168.34.216:6023/' // 邱平毅本地
|
||||||
// axios.defaults.baseURL = 'http://192.168.34.231:6023/'; //杨思瑞本地
|
// axios.defaults.baseURL = 'http://192.168.34.231:6023/'; //杨思瑞本地
|
||||||
// axios.defaults.baseURL = 'http://47.97.202.104:6023/';
|
// axios.defaults.baseURL = 'http://47.97.202.104:6023/';
|
||||||
// axios.defaults.baseURL = 'http://139.9.66.234:8/';
|
// axios.defaults.baseURL = 'http://139.9.66.234:8/';
|
||||||
|
|||||||
BIN
src/views/projectAdmin/zjsj/assets/images/quality/i-humidity.png
Normal file
BIN
src/views/projectAdmin/zjsj/assets/images/quality/i-humidity.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
BIN
src/views/projectAdmin/zjsj/assets/images/quality/i-spray.png
Normal file
BIN
src/views/projectAdmin/zjsj/assets/images/quality/i-spray.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
@ -28,7 +28,7 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
.left {
|
.left {
|
||||||
width: 25%;
|
width: 22%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
.top {
|
.top {
|
||||||
height: 36%;
|
height: 36%;
|
||||||
@ -41,7 +41,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.right {
|
.right {
|
||||||
width: calc(75% - 20px);
|
width: calc(78% - 20px);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<Card title="大面积混泥土展示">
|
<Card title="大面积混泥土展示">
|
||||||
大面积混泥土展示
|
<div class="chart"></div>
|
||||||
|
<div class="btn">远程验收</div>
|
||||||
</Card>
|
</Card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -11,4 +12,21 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style></style>
|
<style lang="less" scoped>
|
||||||
|
.chart {
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100% - 71px);
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
margin: 8px auto;
|
||||||
|
width: calc(100% - 40px);
|
||||||
|
height: 55px;
|
||||||
|
line-height: 55px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #02d5d2;
|
||||||
|
background: url(../assets/images/sourse/bg-car-count.png) no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@ -1,6 +1,28 @@
|
|||||||
<template>
|
<template>
|
||||||
<Card title="标养室培养">
|
<Card title="标养室培养">
|
||||||
标养室培养
|
<div class="environment">
|
||||||
|
<div class="item">
|
||||||
|
<div class="icon temperature"></div>
|
||||||
|
<div class="info">
|
||||||
|
<div class="label">室内温度</div>
|
||||||
|
<div class="value"><span>26</span> ℃</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="item">
|
||||||
|
<div class="icon humidity"></div>
|
||||||
|
<div class="info">
|
||||||
|
<div class="label">室内湿度</div>
|
||||||
|
<div class="value"><span>26</span> %</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="item">
|
||||||
|
<div class="icon spray"></div>
|
||||||
|
<div class="info">
|
||||||
|
<div class="label">喷淋次数</div>
|
||||||
|
<div class="value"><span>26</span> 次</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -11,4 +33,44 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style></style>
|
<style lang="less" scoped>
|
||||||
|
.environment {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
color: #fff;
|
||||||
|
display: flex;
|
||||||
|
.item {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
.icon {
|
||||||
|
margin-right: 10px;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
&.temperature {
|
||||||
|
background: url(../assets/images/quality/i-temperature.png) no-repeat;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
&.humidity {
|
||||||
|
background: url(../assets/images/quality/i-humidity.png) no-repeat;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
&.spray {
|
||||||
|
background: url(../assets/images/quality/i-spray.png) no-repeat;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.info {
|
||||||
|
.value {
|
||||||
|
margin-top: 4px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
span {
|
||||||
|
color: #f7d502;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user