|
|
@ -200,7 +200,7 @@ |
|
|
|
<input type="checkbox" :checked="item.isSelect"> |
|
|
|
<div>{{ item.name }}</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div style="display: flex"> |
|
|
|
<p style="width: 140px;">调节功能异常:</p> |
|
|
@ -529,7 +529,7 @@ export default { |
|
|
|
created() { |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
this.originTableData = JSON.parse(JSON.stringify(this.tableData)) |
|
|
|
this.originTableData = JSON.parse(JSON.stringify(this.tableData)) |
|
|
|
this.getPatientData() |
|
|
|
}, |
|
|
|
methods: { |
|
|
@ -548,6 +548,22 @@ export default { |
|
|
|
fileNUm: '' |
|
|
|
} |
|
|
|
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() { |
|
|
|
const data = { |
|
|
|