From 6fcd89544742fbb6f4cc712a2b4322190debf9dd Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 26 May 2023 09:59:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89loading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/qujing/AppLegalLearning/components/OnlineClass.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/project/qujing/AppLegalLearning/components/OnlineClass.vue b/src/project/qujing/AppLegalLearning/components/OnlineClass.vue index c6391c5..5c44265 100644 --- a/src/project/qujing/AppLegalLearning/components/OnlineClass.vue +++ b/src/project/qujing/AppLegalLearning/components/OnlineClass.vue @@ -52,7 +52,6 @@ export default { }, getList() { if(this.current > this.pages) return - this.$loading() this.$instance.post(`/app/appcourseinfo/listByApplet`, null, { params: { current: this.current, @@ -63,7 +62,6 @@ export default { if(res?.data) { this.classList = this.current==1? res.data.records: [...this.classList,...res.data.records] this.pages = res.data.pages - this.$hideLoading() // this.classList = res.data.records } })