From ee2882cff02d3545b66c7591f88ed4800f730a9a Mon Sep 17 00:00:00 2001 From: spring <2396852758@qq.com> Date: 星期三, 21 五月 2025 10:00:17 +0800 Subject: [PATCH] 消息通知数据自动筛选 --- src/components/do/a6-device/device-overview.vue | 21 ++++++++++++++++++--- 1 files changed, 18 insertions(+), 3 deletions(-) diff --git a/src/components/do/a6-device/device-overview.vue b/src/components/do/a6-device/device-overview.vue index a3f83c7..9ded1af 100644 --- a/src/components/do/a6-device/device-overview.vue +++ b/src/components/do/a6-device/device-overview.vue @@ -69,7 +69,7 @@ } .list-left .list-left-info { - line-height: 36px; + line-height: 30px; display: flex; } @@ -140,6 +140,9 @@ } .info .circle { background: #909399; +} +.active { + color: #ff3838 !important; } </style> @@ -253,6 +256,18 @@ <span style="color:#333333;font-size: 16px;">{{ m.specificationModel ? m.specificationModel : "鏃�" }}</span> + </div> + <div class="list-left-info"> + <span class="label">鏍″噯鏃堕棿锛�</span> + <span + style="color:#333333;font-size: 16px;" + :class="{ active: m.status == 1 }" + >{{ + m.nextCalibrationDateTwo + ? m.nextCalibrationDateTwo.split(" ")[0] + : "" + }}</span + > </div> <div class="list-left-info"> <span class="label">鐘舵�侊細</span> @@ -431,7 +446,7 @@ this.currentPage = 1; this.list = []; this.entity.laboratoryName = null; - this.entity.storagePoint = null; + this.entity.largeCategory = null; // 绛変簬1浠h〃涓烘爲鐨勪竴绾э紝label涓洪儴闂� if (clickNodeVal.label == "鍏朵粬") { this.laboratoryNameIsNull = true; @@ -448,7 +463,7 @@ } else { this.entity.laboratoryName = clickNodeVal.parent.label; } - this.entity.storagePoint = clickNodeVal.label; + this.entity.largeCategory = clickNodeVal.label; } this.refreshTable(); } -- Gitblit v1.9.3