|
@@ -151,6 +151,7 @@
|
151
|
151
|
name:"",
|
152
|
152
|
request_record_date:'',
|
153
|
153
|
patient_id:0,
|
|
154
|
+ his_patient_id:0,
|
154
|
155
|
allPrescription: [],
|
155
|
156
|
isLastOrNextVisible: false,
|
156
|
157
|
|
|
@@ -329,18 +330,17 @@
|
329
|
330
|
};
|
330
|
331
|
prescriptions.push(obj)
|
331
|
332
|
}
|
332
|
|
- }
|
|
333
|
+ this.$emit('call',prescriptions,this.his_patient_id,this.patient_id)
|
333
|
334
|
|
334
|
|
- this.$emit('call',prescriptions)
|
335
|
335
|
}
|
336
|
336
|
},
|
337
|
|
- show(name,id,end_time, start_time,prescriptions){
|
|
337
|
+ show(name,id,end_time, start_time,prescriptions,his_patient_id){
|
338
|
338
|
this.isLastOrNextVisible = true
|
339
|
339
|
this.start_time = start_time
|
340
|
340
|
this.end_time = end_time;
|
341
|
|
-
|
|
341
|
+ this.his_patient_id = his_patient_id
|
342
|
342
|
this.patient_id = id;
|
343
|
|
- this.name = '处方调用' + '('+name +')';
|
|
343
|
+ this.name = '新就诊号与未结算处方关联' + '('+name +')';
|
344
|
344
|
|
345
|
345
|
this.allPrescription = prescriptions;
|
346
|
346
|
for (let i = 0; i < this.allPrescription.length; i++){
|