From e88eed5c47d80a19987f115c9615adfa0f3df4be Mon Sep 17 00:00:00 2001 From: Yangwl <1726150332@qq.com> Date: Fri, 23 May 2025 13:47:32 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=91=E8=9A=8A=E9=A6=99=E8=BD=A6=E9=97=B4?= =?UTF-8?q?=E7=94=9F=E4=BA=A7=E7=9B=91=E6=8E=A7=E7=9C=8B=E6=9D=BF=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Yangwl <1726150332@qq.com> --- src/views/cs/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/cs/index.vue b/src/views/cs/index.vue index 76d870b..c0e6b48 100644 --- a/src/views/cs/index.vue +++ b/src/views/cs/index.vue @@ -504,13 +504,13 @@ export default { ...item, })) const descList = response.map(item => - `${item.params?.equipmentName || '未知'} ${item.params?.auxiliaryequipmentName || '未知'} ${item.orderDesc || '无故障描述'}` + `${item.belongEquipmentName} ${item.equipmentName} ${item.orderDesc || '无故障描述'}` ); this.scrollText = descList.join('★★★★★★★★'); // 用两个全角空格分隔 // 提取所有有效的设备名称 const activeEquipmentNames = new Set( - response.map(item => item.params?.equipmentName) + response.map(item => item.belongEquipmentName) .filter(name => name) );