Browse Source

progress

master
maochaoying 2 years ago
parent
commit
2caa2e0f2f
  1. 61
      src/components/Progress.vue

61
src/components/Progress.vue

@ -11,6 +11,23 @@
<div class="btn ml">继续消毒</div> <div class="btn ml">继续消毒</div>
</div> </div>
</div> </div>
<div class="echarts_wrap">
<div class="single_wrap">
<p class="title">设备温度/湿度/过氧化氢浓度</p>
<div class="echarts_box"></div>
</div>
<div class="single_wrap">
<p class="title">环境1/湿度/过氧化氢浓度</p>
<div class="echarts_box"></div>
</div>
<div class="single_wrap">
<p class="title">环境2/湿度/过氧化氢浓度</p>
<div class="echarts_box"></div>
</div>
</div>
<div class="detail_wrap">
<div class="detail">详情</div>
</div>
</div> </div>
</template> </template>
@ -28,6 +45,7 @@
.header_wrap { .header_wrap {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 49px;
.left_progress { .left_progress {
width: 860px; width: 860px;
height: 80px; height: 80px;
@ -100,5 +118,48 @@
} }
} }
} }
.echarts_wrap {
height: 351px;
display: flex;
align-items: center;
margin-bottom: 19px;
.single_wrap {
flex: 1;
height: 351px;
.title {
font-family: Source Han Sans CN;
font-size: 14px;
font-weight: 500;
letter-spacing: 0.1em;
color: #000000;
margin-bottom: 24px;
padding-left: 11px;
}
.echarts_box {
width: 380px;
height: 308px;
}
}
}
.detail_wrap {
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 16px;
.detail {
width: 105px;
height: 31px;
border-radius: 16px;
background: #06518b;
display: flex;
align-items: center;
justify-content: center;
font-family: Source Han Sans CN;
font-size: 12px;
font-weight: normal;
letter-spacing: 0.1em;
color: #ffffff;
}
}
} }
</style> </style>
Loading…
Cancel
Save