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.chooses = this.info.teamDetail
} }
this.curRow = row this.curRow = row
this.checkedMembers = [] this.checkedMembers = row.participantAccountIds ? row.participantAccountIds.split(',').map(e => +e) : [] //
this.chooseVisible = true this.chooseVisible = true
} }
} }

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

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

Loading…
Cancel
Save