Browse Source

peter

360view
newPeter7 2 years ago
parent
commit
4fa8bf8c55
  1. 16
      src/components/360View/commonForm/eyesVision.vue

16
src/components/360View/commonForm/eyesVision.vue

@ -548,6 +548,22 @@ export default {
fileNUm: '' fileNUm: ''
} }
this.tableData = this.originTableData this.tableData = this.originTableData
this.getPatientData()
},
async getPatientData() {
const { data: res } = await this.$http.get(
'/patient/view/getPatientData',
{
params: {
patientId: this.patientId
}
}
)
if (res.code === 0) {
this.dataForm = res.data
} else {
this.$message.error(res.msg)
}
}, },
handleSaveTable() { handleSaveTable() {
const data = { const data = {

Loading…
Cancel
Save