|
@@ -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
|
|