فهرست منبع

优化质检报告样品不合格数量校验逻辑并修复数值比较问题

yusheng 5 ماه پیش
والد
کامیت
42383b54f2
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/views/inspectionWork/components/inspectionProjectReport.vue

+ 2 - 2
src/views/inspectionWork/components/inspectionProjectReport.vue

@@ -843,10 +843,10 @@
         this.form.sampleNoQualifiedNumber = 0;
       },
       formSampleNoQualifiedNumberChange() {
-        if (this.form.sampleNoQualifiedNumber < 0) {
+        if (+this.form.sampleNoQualifiedNumber < 0) {
           this.form.sampleNoQualifiedNumber = 0;
         }
-        if (this.form.sampleNoQualifiedNumber > this.form.sampleQuantity) {
+        if (+this.form.sampleNoQualifiedNumber > this.form.sampleQuantity) {
           this.form.sampleNoQualifiedNumber = this.form.sampleQuantity;
         }
         this.form.sampleQualifiedNumber =