From 894225cfda2e0c1ffeb8336ccf1987b3812bd89c Mon Sep 17 00:00:00 2001 From: "617594538@qq.com" Date: Fri, 5 Jun 2020 14:50:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E6=A0=B7=E5=BC=8F=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HSLink-front/src/components/Homepage.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/HSLink-front/src/components/Homepage.vue b/HSLink-front/src/components/Homepage.vue index d92d219..2ef8b90 100644 --- a/HSLink-front/src/components/Homepage.vue +++ b/HSLink-front/src/components/Homepage.vue @@ -28,7 +28,7 @@
- +
@@ -113,6 +113,7 @@ name: "Hompage", data() { return{ + tabLoading: false, condition: '', newestNotice: '', goodAdvice: '', @@ -175,7 +176,9 @@ } }, mounted() { + this.tabLoading = true; this.$ajax.post("/hs/getAllContent",{},r=>{ + this.tabLoading = false; this.newestNotice = r.schoolNoticeList.slice(0,12); this.goodAdvice = r.parentAdvice.slice(0,12); this.magicalThinking = r.studentThinking.slice(0,12);