|
|
@ -229,12 +229,6 @@ export default { |
|
|
|
}, |
|
|
|
created() { |
|
|
|
// 患者信息带入 |
|
|
|
this.confirmData.patientName = this.patientDetail.patientName |
|
|
|
this.confirmData.patientAge = this.patientDetail.patientAge |
|
|
|
this.confirmData.patientSex = this.patientDetail.patientSex |
|
|
|
this.confirmData.patientId = this.patientDetail.patientId |
|
|
|
this.confirmData.patientAddress = this.patientDetail.patientAddress |
|
|
|
this.confirmData.patientPhone = this.patientDetail.patientPhone |
|
|
|
this.getConfirmDetail() |
|
|
|
this.queryProject() |
|
|
|
this.$store.commit('initPlugin') |
|
|
@ -285,6 +279,12 @@ export default { |
|
|
|
}}).then(data => { |
|
|
|
const detail = data.data.data |
|
|
|
this.confirmData = { ...detail } |
|
|
|
this.confirmData.patientName = this.patientDetail.patientName |
|
|
|
this.confirmData.patientAge = this.patientDetail.patientAge |
|
|
|
this.confirmData.patientSex = this.patientDetail.patientSex |
|
|
|
this.confirmData.patientId = this.patientDetail.patientId |
|
|
|
this.confirmData.patientAddress = this.patientDetail.patientAddress |
|
|
|
this.confirmData.patientPhone = this.patientDetail.patientPhone |
|
|
|
this.$store.commit('operator', detail.operateSign) |
|
|
|
}) |
|
|
|
}, |
|
|
|