From 8c6f8e64ca39b0ca7bf545eb0c0328fb79914424 Mon Sep 17 00:00:00 2001 From: lkk <364857242@qq.com> Date: 星期四, 06 二月 2025 18:08:20 +0800 Subject: [PATCH] loading&xh --- src/views/doctor/check/index.vue | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/views/doctor/check/index.vue b/src/views/doctor/check/index.vue index 808bde7..719b8d3 100644 --- a/src/views/doctor/check/index.vue +++ b/src/views/doctor/check/index.vue @@ -1598,8 +1598,14 @@ return ""; }, getbzlist() { + this.loading = true; getDeptAdvice(this.queryParam1).then((response) => { - this.deptAdviceList = response.data.list; + + if(response.data.list){ + this.deptAdviceList = response.data.list; + this.loading = false + } + this.total1 = response.data.total; }); }, @@ -2539,6 +2545,7 @@ tjNumber: this.tjNumber, proParentId: this.nums, }; + this.loading = true; getParentId(data).then((response) => { this.proParentList = response.data; this.value = []; -- Gitblit v1.8.0