去掉loading

This commit is contained in:
liuye
2023-05-26 09:59:33 +08:00
parent 10ecea0829
commit 6fcd895447

View File

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