|
@@ -243,13 +243,36 @@
|
|
|
shutsh: 1,
|
|
|
},
|
|
|
imageAddress: 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image',
|
|
|
+ //定时器id
|
|
|
+ timerId:'',
|
|
|
+ permit:true
|
|
|
}
|
|
|
},
|
|
|
onLoad() {
|
|
|
this.load()
|
|
|
},
|
|
|
onShow() {
|
|
|
-
|
|
|
+ var that = this
|
|
|
+ setTimeout(function(){
|
|
|
+ var permit = that.permit
|
|
|
+ //通过vuex中储存的quantity来记录执行的次数,以确保在第一次执行时不执行onshow中的方法
|
|
|
+ var token = uni.getStorageSync('token')
|
|
|
+ that.$store.commit('changeQuan',1)
|
|
|
+ var quantity = that.$store.state.quantity
|
|
|
+ //permit为true表示数据尚未加载成功,此时定时器尚未打开,
|
|
|
+ //为false表示定时器打开过,但此时由于页面隐藏关闭了定时器,所以再次显示时重新打开
|
|
|
+ if(quantity != 1){
|
|
|
+ permit == true && token != ''? that.load() : that.timerId = setInterval(that.renovate,15000)
|
|
|
+ }
|
|
|
+ },1000)
|
|
|
+ },
|
|
|
+ onHide() {
|
|
|
+ var that = this
|
|
|
+ var permit = that.permit
|
|
|
+ //在确保定时器打开且页面隐藏时关闭定时器
|
|
|
+ if(permit == false){
|
|
|
+ clearInterval(this.timerId)
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
load() {
|
|
@@ -267,11 +290,12 @@
|
|
|
this.tworacords = children
|
|
|
this.divide.publicId = records[0].id
|
|
|
this.divide.publicName = records[0].poleGroupName
|
|
|
+ this.timerId = setInterval(this.renovate,15000)
|
|
|
+ this.permit = false
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
- setInterval(this.renovate,15000)
|
|
|
},
|
|
|
//过度动画
|
|
|
cartoon(title, duration) {
|
|
@@ -293,6 +317,7 @@
|
|
|
if (res.code == 200) {
|
|
|
this.tworacords = res.data.records[0].children
|
|
|
this.page.current = 1
|
|
|
+ this.page.total = res.data.total
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -431,6 +456,7 @@
|
|
|
//分页器页数改变
|
|
|
pageTatble(e) {
|
|
|
var that = this
|
|
|
+ that.cartoon('加载中',1000)
|
|
|
var publicId = that.divide.publicId
|
|
|
var pageSize = that.page.pageSize
|
|
|
that.page.current = e.current
|