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 } })