|
|
|
@ -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) { |
|
|
|
|