diff --git a/衡水博爱健康医院医院报告对比/pages/main/list/list.vue b/衡水博爱健康医院医院报告对比/pages/main/list/list.vue index 4affe30..0fdb513 100644 --- a/衡水博爱健康医院医院报告对比/pages/main/list/list.vue +++ b/衡水博爱健康医院医院报告对比/pages/main/list/list.vue @@ -28,10 +28,14 @@ }, }); const ReportList = async () => { + uni.showLoading({ + title: '加载中...' + }); const response = await ReportListAction({ id_number: $props.id_number }) $response(response, () => { + uni.hideLoading(); report_list.value = response.data.list }) } diff --git a/衡水博爱健康医院医院报告对比/pages/main/report/report.vue b/衡水博爱健康医院医院报告对比/pages/main/report/report.vue index e40df36..f2b821c 100644 --- a/衡水博爱健康医院医院报告对比/pages/main/report/report.vue +++ b/衡水博爱健康医院医院报告对比/pages/main/report/report.vue @@ -40,10 +40,14 @@ }) } const ReportInfo = async () => { + uni.showLoading({ + title: '加载中...' + }); const response = await ReportInfoAction({ id: $props.id }) $response(response, () => { + uni.hideLoading(); report_content.value = { content: response.data.content, conclusion: response.data.conclusion,