This commit is contained in:
xx 2025-06-09 01:01:39 +08:00
parent e2e75693a2
commit ec83c474f9
4 changed files with 5 additions and 5 deletions

View File

@ -109,7 +109,7 @@
// //
onShow(e) { onShow(e) {
uni.showLoading({ uni.showLoading({
title:this.$t('nodata') title:this.$t('loading')
}) })
if(this.userInfo.token === typeof(undefined) || this.userInfo.token === undefined){ if(this.userInfo.token === typeof(undefined) || this.userInfo.token === undefined){
this.islogin = false; this.islogin = false;

View File

@ -107,7 +107,7 @@
// //
onShow() { onShow() {
uni.showLoading({ uni.showLoading({
title: this.$t("loading") title: this.$t('loading')
}) })
let data = { let data = {
page: this.par.page, page: this.par.page,

View File

@ -79,7 +79,7 @@
// //
onShow() { onShow() {
uni.showLoading({ uni.showLoading({
title:'Data Loading...' title: this.$t('loading')
}) })
this.getlist(); this.getlist();
}, },

View File

@ -138,7 +138,7 @@
// //
onLoad(e) { onLoad(e) {
uni.showLoading({ uni.showLoading({
title: 'Data Loading...' title: this.$t('loading')
}); });
if(e.id != typeof(undefined) && e.id != undefined){ if(e.id != typeof(undefined) && e.id != undefined){
this.isActive = e.id; this.isActive = e.id;
@ -358,7 +358,7 @@
onReachBottom() { onReachBottom() {
if(this.select.page < this.last_page){ if(this.select.page < this.last_page){
uni.showLoading({ uni.showLoading({
title:'' title:this.$t('loading')
}) })
this.select.page = this.select.page + 1; this.select.page = this.select.page + 1;
this.getList(); this.getList();