|
|
@ -221,6 +221,13 @@ export default { |
|
|
|
this.$store.commit('initPlugin') |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
queryDiagnostic() { |
|
|
|
this.$http.get('/mzbl/getLastDiagnostic', { params: { |
|
|
|
patientId: this.patientDetail.patientId |
|
|
|
}}).then(data => { |
|
|
|
this.confirmData.diagnostic = data.data.data |
|
|
|
}) |
|
|
|
}, |
|
|
|
signClick(index) { |
|
|
|
this.$store.commit('beginSign', index) |
|
|
|
}, |
|
|
@ -268,6 +275,7 @@ export default { |
|
|
|
if (detail.jzNumber) { |
|
|
|
this.confirmData = { ...detail } |
|
|
|
} else { |
|
|
|
this.queryDiagnostic() |
|
|
|
this.confirmData.patientName = this.patientDetail.patientName |
|
|
|
this.confirmData.patientAge = this.patientDetail.patientAge |
|
|
|
this.confirmData.patientSex = this.patientDetail.patientSex |
|
|
|