From 9c49917bb7ec38cc4317591763f80ccf89c2e729 Mon Sep 17 00:00:00 2001
From: fcx <2246384483@qq.com>
Date: 星期三, 03 十二月 2025 19:26:58 +0800
Subject: [PATCH] 将判断上限值过大过小逻辑删除

---
 pages/QC/SJ/detail.vue |   26 --------------------------
 1 files changed, 0 insertions(+), 26 deletions(-)

diff --git a/pages/QC/SJ/detail.vue b/pages/QC/SJ/detail.vue
index ed5caee..2754d7e 100644
--- a/pages/QC/SJ/detail.vue
+++ b/pages/QC/SJ/detail.vue
@@ -280,19 +280,6 @@
         let checkValue = Number(this.formData.fcheckResu);
         let minValue = Number(this.formData.minValue);
         let maxValue = Number(this.formData.maxValue);
-        let standardValue = Number(this.formData.standardValue);
-
-        // 娣诲姞鏂扮殑楠岃瘉锛氭鏌ヤ笂闄愬�煎拰涓嬮檺鍊间笌鏍囧噯鍊肩殑鍏崇郴
-        if (this.formData.standardValue != null) {
-          if (maxValue < standardValue) {
-            this.$showMessage("涓婇檺鍊艰繃灏忥紝搴斿ぇ浜庣瓑浜庢爣鍑嗗��");
-            return;
-          }
-          if (minValue > standardValue) {
-            this.$showMessage("涓嬮檺鍊艰繃澶э紝搴斿皬浜庣瓑浜庢爣鍑嗗��");
-            return;
-          }
-        }
 
         if (isNaN(checkValue) || isNaN(minValue) || isNaN(maxValue)) {
           this.$showMessage("妫�楠屽�兼垨鑼冨洿鍊兼牸寮忎笉姝g‘锛岃妫�鏌ヨ緭鍏�");
@@ -398,19 +385,6 @@
         let checkValue = Number(this.editData.fcheckResu);
         let minValue = Number(this.formData.minValue);
         let maxValue = Number(this.formData.maxValue);
-        let standardValue = Number(this.formData.standardValue);
-
-        // 娣诲姞鏂扮殑楠岃瘉锛氭鏌ヤ笂闄愬�煎拰涓嬮檺鍊间笌鏍囧噯鍊肩殑鍏崇郴
-        if (this.formData.standardValue != null) {
-          if (maxValue < standardValue) {
-            this.$showMessage("涓婇檺鍊艰繃灏忥紝搴斿ぇ浜庣瓑浜庢爣鍑嗗��");
-            return;
-          }
-          if (minValue > standardValue) {
-            this.$showMessage("涓嬮檺鍊艰繃澶э紝搴斿皬浜庣瓑浜庢爣鍑嗗��");
-            return;
-          }
-        }
 
         if (isNaN(checkValue) || isNaN(minValue) || isNaN(maxValue)) {
           this.$showMessage("妫�楠屽�兼垨鑼冨洿鍊兼牸寮忎笉姝g‘锛岃妫�鏌ヨ緭鍏�");

--
Gitblit v1.9.3