赛事redis

alioss
yujialong 2 years ago
parent 22350163e5
commit 1af88dc3e8
  1. 1
      src/api/index.js
  2. 4
      src/pages/index/zxy/index.vue
  3. 12
      src/pages/match/list/index.vue

@ -110,6 +110,7 @@ export default {
frontOfficeCompetitionRanking: `competition/competition/rank/frontOfficeCompetitionRanking`,
stageGradeManagementList: `competition/competition/performance/stageGradeManagementList`,
stageTeamScoreDetails: `competition/competition/rank/stageTeamScoreDetails`,
getRedisCacheCompetition: `competition/competition/management/getRedisCache`,
// 阿里云文件/视频管理
fileDeletion: `${uploadURL}oss/manage/fileDeletion`, // 删除OSS文件

@ -183,7 +183,7 @@
<li class="wow fadeInDown" data-wow-delay="0.5s">
<img src="@/assets/img/zxy/adv1.png" alt="">
<h6>教学创新<br>引用各类案例采用项目化教学</h6>
<p class="text">大数据追踪每位老师的教学和每位学生的学习情况进行统计分析并通过可视化图表展示教学效果一目了然</p>
<p class="text">实验教学系统采用案例教学方法与项目化教学方法相结合帮助学生更好的掌握知识点融会贯通</p>
</li>
<li class="wow fadeInRight" data-wow-delay="0.8s">
<img src="@/assets/img/zxy/adv2.png" alt="">
@ -193,7 +193,7 @@
<li class="wow fadeInUp" data-wow-delay="1.1s">
<img src="@/assets/img/zxy/adv3.png" alt="">
<h6>大数据分析统计<br>教学效果有可依</h6>
<p class="text">大数据追踪每位老师的教学和每位学生的学习情况进行统计分析并通过可视化图表展示教学效果一目了然</p>
<p class="text">实验教学系统采用案例教学方法与项目化教学方法相结合帮助学生更好的掌握知识点融会贯通</p>
</li>
<li class="wow fadeInUp" data-wow-delay="1.4s">
<img src="@/assets/img/zxy/adv4.png" alt="">

@ -202,6 +202,7 @@ export default {
data() {
return {
timer: null,
redisTimer: null,
token: util.local.get(Setting.tokenKey),
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
@ -474,15 +475,26 @@ export default {
clearInterval(n)
})
this.timerList = []
clearInterval(this.redisTimer)
},
getData() {
this.loadIns = Loading.service()
this.getList()
if (!Setting.isDev) {
clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000)
}
},
initData() {
this.page = 1
this.getData()
},
// redis
getRedis() {
this.$post(this.api.getRedisCacheCompetition).then(({ data }) => {
data && this.getList()
}).catch(res => {})
},
//
getProvince() {
this.$get(this.api.queryProvince).then(({ list }) => {

Loading…
Cancel
Save