|
|
|
@ -62,7 +62,7 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
computed: { |
|
|
|
...mapState(['window', 'dict','dataTransOpts', 'doctorCheck', 'sumDoctorCheck']), |
|
|
|
...mapState(['window', 'dict', 'dataTransOpts', 'doctorCheck', 'sumDoctorCheck']), |
|
|
|
|
|
|
|
divHeight() { |
|
|
|
let tempHeight = this.window.pageHeight < 600 ? 600 : this.window.pageHeight |
|
|
|
@ -72,13 +72,14 @@ export default { |
|
|
|
|
|
|
|
methods: { |
|
|
|
//获取结果明细 |
|
|
|
CheckDetails(RegisterId) { |
|
|
|
if (!RegisterId) { |
|
|
|
CheckDetails(patientRegisterId) { |
|
|
|
if (!patientRegisterId) { |
|
|
|
this.tableData = [] |
|
|
|
return |
|
|
|
} |
|
|
|
console.log(`/api/app/sumsummaryreport/getdetailedresultslist?PatientRegisterId=${RegisterId}`) |
|
|
|
getapi(`/api/app/sumsummaryreport/getdetailedresultslist?PatientRegisterId=${RegisterId}`) |
|
|
|
console.log(`/api/app/sumsummaryreport/getdetailedresultslist?PatientRegisterId=${patientRegisterId}`) |
|
|
|
|
|
|
|
postapi('/api/app/SumSummaryReport/GetDetailResults', { patientRegisterId }) |
|
|
|
.then((res) => { |
|
|
|
console.log("获取结果明细 CheckDetails", res.data); |
|
|
|
if (res.code != -1) { |
|
|
|
|