optimize loading status

This commit is contained in:
liangping 2021-08-18 13:32:45 +08:00
parent 8d0de6eea8
commit b680699a0c

View File

@ -115,8 +115,9 @@ export default {
AppFooter,
},
data() {
const chains = this.$store.state.chains.config
return {
chains: [],
chains,
downImg: require('@/assets/images/pages/under-maintenance.svg'),
}
},
@ -131,7 +132,7 @@ export default {
},
},
created() {
this.chains = JSON.parse(localStorage.getItem('chains'))
this.fetch()
this.timer = setInterval(this.fetch, 120000)
},
beforeDestroy() {
@ -139,6 +140,7 @@ export default {
},
methods: {
fetch() {
console.log('fetch')
Object.keys(this.chains).forEach(k => {
const chain = this.chains[k]
if (chain.api) {