diff --git a/src/api/index.js b/src/api/index.js index c2d26de..92e7dc7 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -101,6 +101,7 @@ export default { getCustomerBySchoolId: `nakadai/nakadai/customer/getCustomerBySchoolId`, isParticipant: `competition/competition/management/isParticipant`, editCompetitionTeam: `competition/competition/team/editCompetitionTeam`, + promptRemoval: `competition/competition/team/promptRemoval`, frontDeskOverallRanking: `${host1}competition/competition/rank/frontDeskOverallRanking`, frontOfficeCompetitionRanking: `${host1}competition/competition/rank/frontOfficeCompetitionRanking`, stageGradeManagementList: `${host1}competition/competition/performance/stageGradeManagementList`, diff --git a/src/layouts/home/index.vue b/src/layouts/home/index.vue index 14d7a89..8a55cde 100644 --- a/src/layouts/home/index.vue +++ b/src/layouts/home/index.vue @@ -77,19 +77,33 @@ export default { computed: { ...mapState("user", [ 'logView' + ]), + ...mapState("match", [ + 'noticed' ]) }, mounted() { - this.autoLogout(); + this.autoLogout() + // this.noticed || this.getMatchStatus() // 0才要调用 this.logView || this.getLogStatus() // logView为false才需要查询接口 }, methods: { ...mapMutations("user", [ 'SET_LOG' ]), + ...mapMutations("match", [ + 'SET_NOTICE' + ]), ...mapActions("user", [ "logout" ]), + // 提示赛事状态(登录后调用一次) + getMatchStatus() { + util.local.get(Setting.tokenKey) && this.$post(this.api.promptRemoval).then(({ prompt }) => { + this.SET_NOTICE() + prompt && util.errorMsg(prompt) + }).catch(res => {}) + }, // 获取日志列表 getLog() { this.$get(`${this.api.platformLogList}?platformId=${Setting.platformId}&port=1&versionName=`).then(({ logList }) => { diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index f13e4ed..67158f9 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -5,7 +5,7 @@
-
+
{{status}} @@ -23,7 +23,7 @@
最近编辑时间:{{ form.updateTime }}
-
+
竞赛信息