|
@@ -25,11 +25,19 @@
|
|
|
:key="index"
|
|
|
:class="{ light: item.is_light }"
|
|
|
>
|
|
|
- <div class="f1">{{ item.f1 }}</div>
|
|
|
- <div class="f2">{{ item.f2 }}</div>
|
|
|
- <div class="f3">( {{ item.f3 }} )</div>
|
|
|
- <div class="f4">{{ item.f4 }}</div>
|
|
|
- <div class="f5">( {{ item.f5 }} )</div>
|
|
|
+ <div class="f1">{{ item.f1.slice(0, 3) }}</div>
|
|
|
+ <div class="f2">
|
|
|
+ {{ item.f2 }} <div v-if="item.f3">:</div>
|
|
|
+ <div class="f3">
|
|
|
+ {{ item.f3 }}
|
|
|
+ <div v-if="!item.f3">0</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="f4">
|
|
|
+ {{ item.f4 }}<div v-if="item.f5">:</div>
|
|
|
+ <div class="f5"> <div v-if="!item.f3"></div>{{ item.f5 }}</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -126,10 +134,6 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-/deep/.el-table thead.is-group th.el-table__cell {
|
|
|
- background-color: rgba(96, 103, 105, 0.2);
|
|
|
-}
|
|
|
-
|
|
|
.status-panel {
|
|
|
position: relative;
|
|
|
height: 22.315vh;
|
|
@@ -216,70 +220,41 @@ export default {
|
|
|
.item-box {
|
|
|
flex-grow: 1;
|
|
|
display: flex;
|
|
|
- flex-direction: column;
|
|
|
+ flex-direction: row;
|
|
|
|
|
|
.data-item {
|
|
|
flex: 1;
|
|
|
display: flex;
|
|
|
- flex-direction: row;
|
|
|
+ flex-direction: column;
|
|
|
background-color: fade(@darkgray, 20%);
|
|
|
margin-top: 0.278vh;
|
|
|
+ align-items: center;
|
|
|
|
|
|
- div {
|
|
|
- font-size: @fontsize-s;
|
|
|
- overflow: hidden;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
+ .f1 {
|
|
|
+ height: 60px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 2.2vh;
|
|
|
+ font-weight: 695;
|
|
|
+ margin-top: 25px;
|
|
|
}
|
|
|
-
|
|
|
- .f1,
|
|
|
.f2,
|
|
|
.f4 {
|
|
|
- text-align: right;
|
|
|
- color: @gray;
|
|
|
- justify-content: flex-end;
|
|
|
- }
|
|
|
- .f1 {
|
|
|
- font-size: 1.6vh;
|
|
|
- font-weight: 695 !important;
|
|
|
- color: #a5c3af!important;
|
|
|
- }
|
|
|
-
|
|
|
- .f3,
|
|
|
- .f5 {
|
|
|
- font-family: "Bicubik";
|
|
|
+ height: 50px;
|
|
|
+ display: inline-block;
|
|
|
text-align: left;
|
|
|
- color: @green;
|
|
|
- justify-content: flex-start;
|
|
|
- }
|
|
|
-
|
|
|
- .f1 {
|
|
|
- flex: 2;
|
|
|
- }
|
|
|
-
|
|
|
- .f2 {
|
|
|
- flex: 3;
|
|
|
- margin-right: 0.556vh;
|
|
|
- }
|
|
|
-
|
|
|
- .f3 {
|
|
|
- flex: 3;
|
|
|
- }
|
|
|
-
|
|
|
- .f4 {
|
|
|
- flex: 1;
|
|
|
- margin-right: 0.556vh;
|
|
|
- }
|
|
|
-
|
|
|
- .f5 {
|
|
|
- flex: 2;
|
|
|
- margin-right: 0;
|
|
|
+ font-size: 1.8vh;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
.f3,
|
|
|
.f5 {
|
|
|
- color: #05bb4c !important;
|
|
|
- font-size: 1.34vh;
|
|
|
- margin-left: 18px !important;
|
|
|
+ height: 50px;
|
|
|
+ line-height: 50px;
|
|
|
+ display: inline-block;
|
|
|
+ text-align: left;
|
|
|
+ font-size: 1.6vh;
|
|
|
+ margin-left: 20px;
|
|
|
+ color: #05bb4c;
|
|
|
}
|
|
|
|
|
|
&.light {
|
|
@@ -295,17 +270,6 @@ export default {
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
}
|
|
|
-
|
|
|
- .f1,
|
|
|
- .f2,
|
|
|
- .f4 {
|
|
|
- color: @write;
|
|
|
- }
|
|
|
-
|
|
|
- .f3,
|
|
|
- .f5 {
|
|
|
- color: fade(@write, 60%);
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|