From 4335d446344d10079a4bfabf59221efdf5730f1b Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期四, 11 七月 2024 15:55:30 +0800 Subject: [PATCH] 修改检验任务 --- static/js/worker.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/static/js/worker.js b/static/js/worker.js index 3546e3f..b8fb3be 100644 --- a/static/js/worker.js +++ b/static/js/worker.js @@ -39,7 +39,7 @@ let list2 = [] excelMethodList.forEach(item => { - if (item.valueList.find(m => m.r == r && m.c == c)) { + if (item.valueList&&item.valueList.length>0&&item.valueList.find(m => m.r == r && m.c == c)) { var comValue = {} item.valueList.forEach(a => { list.forEach(b => { -- Gitblit v1.9.3