From 1b60f1df51e1824154018a5b6a7159b09b44c8b1 Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期一, 12 六月 2023 14:23:26 +0800 Subject: [PATCH] 化验页面--数据提交更新 --- igds-web/src/main/resources/static/admin/inout/in-check.js | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/igds-web/src/main/resources/static/admin/inout/in-check.js b/igds-web/src/main/resources/static/admin/inout/in-check.js index f8a46e1..e2ba053 100644 --- a/igds-web/src/main/resources/static/admin/inout/in-check.js +++ b/igds-web/src/main/resources/static/admin/inout/in-check.js @@ -110,23 +110,23 @@ if (symbol && limit) { if (">=" == symbol) { if (newValue < limit) { - data.remarks = "涓嶅悎鏍�"; + data.result = "涓嶅悎鏍�"; } else { - data.remarks = "鍚堟牸"; + data.result = "鍚堟牸"; } } if ("<=" == symbol) { if (newValue > limit) { - data.remarks = "涓嶅悎鏍�"; + data.result = "涓嶅悎鏍�"; } else { - data.remarks = "鍚堟牸"; + data.result = "鍚堟牸"; } } if ("==" == symbol) { if (newValue != limit) { - data.remarks = "涓嶅悎鏍�"; + data.result = "涓嶅悎鏍�"; } else { - data.remarks = "鍚堟牸"; + data.result = "鍚堟牸"; } } } @@ -335,7 +335,7 @@ }); // 鑾峰彇鍖栭獙椤逛俊鎭� - flushCheckItem(null); + flushCheckItem(curCheckData.foodVariety); } /** @@ -425,7 +425,7 @@ width: '10%', edit: 'text' }, { - field: 'operaSymbol', + field: 'operaSymbolValue', title: '鏍囧噯鍊�', align: 'center', width: '10%' @@ -502,7 +502,7 @@ var index = layer.load(); $.ajax({ type: "POST", - url: "../../basic/inout/update-check1", + url: "../../basic/inout/update-check", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(curCheckData), -- Gitblit v1.9.3