See999 4 år sedan
förälder
incheckning
89c022c536
1 ändrade filer med 8 tillägg och 2 borttagningar
  1. 8 2
      src/xt_pages/dialysis/details/dialog/doubleCheckDialog.vue

+ 8 - 2
src/xt_pages/dialysis/details/dialog/doubleCheckDialog.vue Visa fil

@@ -215,8 +215,14 @@
215 215
         let ParamsQuery = this.doubleReview
216 216
         ParamsQuery['patient'] = this.patient.id
217 217
         ParamsQuery['record_date'] = this.record_date
218
-        ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
219
-        ParamsQuery['first_check_time'] = this.record_date + ' ' + this.first_check_time
218
+        if(this.check_time){
219
+          ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
220
+        }
221
+        // ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
222
+        if(this.first_check_time){
223
+          ParamsQuery['first_check_time'] = this.record_date + ' ' + this.first_check_time
224
+        }
225
+        
220 226
         ParamsQuery['creater'] = this.doubleReview.creater
221 227
         ParamsQuery['modifier'] = this.doubleReview.modifier
222 228