alioss V2.2.9
yujialong 2 years ago
parent 1af88dc3e8
commit efd7968367
  1. 2
      src/pages/match/details/index.vue
  2. 12
      src/pages/match/list/index.vue
  3. 2
      src/setting.js

@ -1009,7 +1009,7 @@ export default {
this.chooses = this.info.teamDetail
}
this.curRow = row
this.checkedMembers = []
this.checkedMembers = row.participantAccountIds ? row.participantAccountIds.split(',').map(e => +e) : [] //
this.chooseVisible = true
}
}

@ -331,7 +331,10 @@ export default {
this.SET_TYPE(2)
this.getProvince()
this.getData()
this.$once('hook:beforeDestroy', this.clearTimer)
this.$once('hook:beforeDestroy', function() {
this.clearTimer()
clearInterval(this.redisTimer)
})
},
methods: {
...mapMutations('match', [
@ -372,9 +375,9 @@ export default {
this.listData = records
this.totals = data.total
this.handleStatus()
this.loadIns.close();
// this.loadIns.close();
}).catch(res => {
this.loadIns.close()
// this.loadIns.close()
})
},
//
@ -475,10 +478,9 @@ export default {
clearInterval(n)
})
this.timerList = []
clearInterval(this.redisTimer)
},
getData() {
this.loadIns = Loading.service()
// this.loadIns = Loading.service()
this.getList()
if (!Setting.isDev) {
clearInterval(this.redisTimer)

@ -28,7 +28,7 @@ if (isPro) {
uploadURL = `http://121.37.12.51/`
host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服
// host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.51:9000/"; // 榕
// host = "http://192.168.31.116:9000/"; // 赓
}

Loading…
Cancel
Save