From f2fa6fbb0929a15f871f080b0f07f983c3fee34e Mon Sep 17 00:00:00 2001 From: liyongde <1419499670@qq.com> Date: Fri, 26 Sep 2025 13:32:50 +0800 Subject: [PATCH] =?UTF-8?q?opt:=20=E5=A5=97=E8=BD=B4=E7=9C=8B=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../doc/套轴点位日志记录实时看板v4.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lms/nladmin-system/doc/套轴点位日志记录实时看板v4.html b/lms/nladmin-system/doc/套轴点位日志记录实时看板v4.html index 349c45224..73d2b0054 100644 --- a/lms/nladmin-system/doc/套轴点位日志记录实时看板v4.html +++ b/lms/nladmin-system/doc/套轴点位日志记录实时看板v4.html @@ -405,7 +405,13 @@ let statusText = '已完成'; if (item.status === '01') { - statusText = '准备套轴'; + if (item.is_paper_ok === '2') { + statusText = '等待配送'; + } else if(item.is_paper_ok === '3') { + statusText = '套轴执行中'; + } else { + statusText = '准备套轴'; + } } else if (item.status === '02') { statusText = '正在配送'; } else if (item.status === '03') { @@ -554,7 +560,7 @@ // 正则表达式:匹配10位字符,第一个是字母,第四第五是FQ const regex = /\b[A-Za-z][A-Za-z0-9]{2}FQ[A-Za-z0-9]{5}\b/g; const matches = text.match(regex); - + // 去除重复的设备ID return matches ? [...new Set(matches)] : []; }