作者 mxd

教师端列表上拉加载修改

... ... @@ -89,7 +89,7 @@
this.getData()
},
getData() {
if(this.status === 'loading') return;
if(this.status === 'loading' || this.status === 'nomore') return;
this.status = 'loading';
uni.showLoading({
title: '加载中',
... ...
... ... @@ -80,7 +80,7 @@
this.getData()
},
getData() {
if(this.status === 'loading') return;
if(this.status === 'loading' || this.status === 'nomore') return;
this.status = 'loading';
uni.showLoading({
title: '加载中',
... ...
... ... @@ -71,7 +71,7 @@
this.getData()
},
getData() {
if(this.status === 'loading') return;
if(this.status === 'loading' || this.status === 'nomore') return;
this.status = 'loading';
uni.showLoading({
title: '加载中',
... ...