|
|
@ -256,6 +256,13 @@ export default { |
|
|
|
signClick(index) { |
|
|
|
this.$store.commit('beginSign', index) |
|
|
|
}, |
|
|
|
queryDiagnostic() { |
|
|
|
this.$http.get('/mzbl/getLastDiagnostic', { params: { |
|
|
|
patientId: this.patientDetail.patientId |
|
|
|
}}).then(data => { |
|
|
|
this.confirmData.diagnose = data.data.data |
|
|
|
}) |
|
|
|
}, |
|
|
|
handlePrint() { |
|
|
|
this.printHidden = false |
|
|
|
this.handleSaveTable() |
|
|
@ -278,6 +285,7 @@ export default { |
|
|
|
this.$store.commit('minorPatientSign', this.confirmData.patientSign) |
|
|
|
this.$store.commit('minorKinSign', this.confirmData.familySign) |
|
|
|
} else { |
|
|
|
this.queryDiagnostic() |
|
|
|
this.confirmData = JSON.parse(JSON.stringify(this.orgin)) |
|
|
|
const userData = JSON.parse(window.sessionStorage.getItem('qg-userData')) |
|
|
|
this.confirmData.operator = userData.signImgBase |
|
|
|