From 87f24c40fae91941d2f158210026f7d957cf23cd Mon Sep 17 00:00:00 2001 From: ZJYHX Date: Thu, 15 May 2025 09:08:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=B8=9C=E9=81=93=E4=B8=BB=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE:=E5=8A=A0=E8=BD=BD=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/CustomerStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/CustomerStore.js b/src/stores/CustomerStore.js index c4f67cb..8c6525b 100644 --- a/src/stores/CustomerStore.js +++ b/src/stores/CustomerStore.js @@ -426,7 +426,6 @@ class CustomerStore { .then((response) => response.json()) .then((json) => { runInAction(() => { - this.host_case_data.loading = false; switch(groupBy){ case "1": this.host_case_data.summaryData = json.result?json.result:[]; @@ -439,6 +438,7 @@ class CustomerStore { break; case "4": this.host_case_data.singleDetailData = json.result?json.result:[]; + this.host_case_data.loading = false; break; } });