diff --git a/src/views/equipment/analysis/efficiency/index.vue b/src/views/equipment/analysis/efficiency/index.vue
index 75309699..3f2e2853 100644
--- a/src/views/equipment/analysis/efficiency/index.vue
+++ b/src/views/equipment/analysis/efficiency/index.vue
@@ -369,7 +369,6 @@ export default {
params: this.queryParams,
});
if (code == 0) {
- console.log('data', data);
this.list = data;
}
},
diff --git a/src/views/monitoring/equipmentProcessAmount/index.vue b/src/views/monitoring/equipmentProcessAmount/index.vue
index a12c047b..961297d7 100644
--- a/src/views/monitoring/equipmentProcessAmount/index.vue
+++ b/src/views/monitoring/equipmentProcessAmount/index.vue
@@ -10,7 +10,18 @@
-
+
+ {{ currentFactory || '工厂名称' }}
+
+
-
+
-->
-
+
@@ -369,9 +380,44 @@ export default {
transform: translateY(-12px);
}
.custom-tabs >>> .el-tabs__item {
- padding-left: 8px !important;
- padding-right: 8px !important;
+ padding-left: 0px !important;
+ padding-right: 0px !important;
line-height: 36px !important;
height: 36px;
}
+
+.factory-list__selector {
+ position: relative;
+ height: 36px;
+ font-size: 16px;
+ line-height: 36px;
+ padding-left: 28px;
+ background: url(../../../assets/images/factory-icon.png) 0 / 10% no-repeat;
+}
+
+.factory-list__selector:hover {
+ cursor: pointer;
+ color: #0008;
+}
+
+.factory-list__selector::after {
+ content: '';
+ position: absolute;
+ top: 16px;
+ left: 100px;
+ display: inline-block;
+ width: 8px;
+ height: 8px;
+ /* background: #5c5c5c; */
+ border-color: #000;
+ border-width: 4px;
+ border-style: solid;
+ border-top-color: transparent;
+ border-right-color: transparent;
+ border-bottom-color: transparent;
+}
+.factory-list__selector:hover::after {
+ /* cursor: pointer; */
+ border-left-color: #0008;
+}