|
@@ -5,9 +5,7 @@
|
|
|
<div class="box">
|
|
|
<div class="boxContent">
|
|
|
<div class="contentHeader">
|
|
|
- <el-icon :size="30">
|
|
|
- <CirclePlus />
|
|
|
- </el-icon>
|
|
|
+ <img class="imgIcon" src="@/assets/icons/jinrijihua.svg" />
|
|
|
<span class="headerText">产品数量</span>
|
|
|
</div>
|
|
|
<div class="contentNum">100</div>
|
|
@@ -16,10 +14,8 @@
|
|
|
<div class="box">
|
|
|
<div class="boxContent">
|
|
|
<div class="contentHeader">
|
|
|
- <el-icon :size="30">
|
|
|
- <CirclePlus />
|
|
|
- </el-icon>
|
|
|
- <span class="headerText">222</span>
|
|
|
+ <img class="imgIcon" src="@/assets/icons/jinriwancheng.svg" />
|
|
|
+ <span class="headerText">完成数量</span>
|
|
|
</div>
|
|
|
<div class="contentNum">100</div>
|
|
|
</div>
|
|
@@ -27,21 +23,17 @@
|
|
|
<div class="box" style="position: absolute; left: 0; bottom: 0">
|
|
|
<div class="boxContent">
|
|
|
<div class="contentHeader">
|
|
|
- <el-icon :size="30">
|
|
|
- <CirclePlus />
|
|
|
- </el-icon>
|
|
|
- <span class="headerText">222</span>
|
|
|
+ <img class="imgIcon" src="@/assets/icons/zhuliaoqitao.svg" />
|
|
|
+ <span class="headerText">主料齐套</span>
|
|
|
</div>
|
|
|
<div class="contentNum">100</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="box" style="position: absolute; right: 0; bottom: 0">
|
|
|
- <div class="boxContent">
|
|
|
+ <div class="boxContent activeBoxContent">
|
|
|
<div class="contentHeader">
|
|
|
- <el-icon :size="30">
|
|
|
- <CirclePlus />
|
|
|
- </el-icon>
|
|
|
- <span class="headerText">222</span>
|
|
|
+ <img class="imgIcon" src="@/assets/icons/jinribaogu.svg" />
|
|
|
+ <span class="headerText">报故历史</span>
|
|
|
</div>
|
|
|
<div class="contentNum">100</div>
|
|
|
</div>
|
|
@@ -58,7 +50,7 @@ import { reactive, ref } from "vue";
|
|
|
<style lang="scss" scoped>
|
|
|
.body {
|
|
|
width: 100%;
|
|
|
- height: 100%;
|
|
|
+ height: calc(100% - 60px);
|
|
|
position: relative;
|
|
|
|
|
|
.box {
|
|
@@ -70,7 +62,7 @@ import { reactive, ref } from "vue";
|
|
|
|
|
|
.boxContent {
|
|
|
border-radius: 16px;
|
|
|
- background-color: white;
|
|
|
+
|
|
|
width: calc(100% - 5px);
|
|
|
height: calc(100% - 5px);
|
|
|
position: relative;
|
|
@@ -84,6 +76,12 @@ import { reactive, ref } from "vue";
|
|
|
top: 5px;
|
|
|
left: 5px;
|
|
|
|
|
|
+ //控制icon大小
|
|
|
+ .imgIcon {
|
|
|
+ width: 32px;
|
|
|
+ height: 32px;
|
|
|
+ }
|
|
|
+
|
|
|
.headerText {
|
|
|
font-size: $f20;
|
|
|
color: $font-default-60;
|
|
@@ -98,6 +96,10 @@ import { reactive, ref } from "vue";
|
|
|
bottom: 1px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .activeBoxContent {
|
|
|
+ background-color: white;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.horizontalLine {
|