添加websocket(赛事、创业)

alioss
yujialong 2 years ago
parent 48ec1e6c3b
commit 9fcff50232
  1. 1
      src/api/index.js
  2. 53
      src/layouts/header/index.vue
  3. 27
      src/pages/activity/list/index.vue
  4. 37
      src/pages/activity/manage/list/index.vue
  5. 262
      src/pages/ass/list/index.vue
  6. 5
      src/pages/match/details/index.vue
  7. 311
      src/pages/match/list/index.vue
  8. 2
      src/pages/station/preview/index.vue

@ -17,6 +17,7 @@ export default {
deleteProfile : `users/users/userInfo/deleteProfile`, deleteProfile : `users/users/userInfo/deleteProfile`,
getUserRolesPermissionMenu: `${host}users/users/user-role/getUserRolesPermissionMenu`, getUserRolesPermissionMenu: `${host}users/users/user-role/getUserRolesPermissionMenu`,
fileUploadNakadai: `${host}nakadai/nakadai/oss/fileUpload`, fileUploadNakadai: `${host}nakadai/nakadai/oss/fileUpload`,
refreshPageNotification : `nakadai/message/refreshPageNotification`,
platformLogList: `nakadai/nakadai/log/platformLogList`, platformLogList: `nakadai/nakadai/log/platformLogList`,
logNotification: `nakadai/nakadai/log/logNotification`, logNotification: `nakadai/nakadai/log/logNotification`,

@ -71,6 +71,7 @@ import Setting from "@/setting";
import util from "@/libs/util"; import util from "@/libs/util";
import navbar from "../navbar"; import navbar from "../navbar";
import axios from 'axios' import axios from 'axios'
import Bus from '@/libs/bus'
export default { export default {
data () { data () {
return { return {
@ -97,7 +98,6 @@ export default {
this.getUserInfo(); this.getUserInfo();
this.getNotice() this.getNotice()
} }
this.$once('hook:beforeDestroy', function () { this.$once('hook:beforeDestroy', function () {
clearInterval(this.noticeTimer) clearInterval(this.noticeTimer)
}) })
@ -118,25 +118,66 @@ export default {
} }
}).catch(res => { }); }).catch(res => { });
}, },
// socket
open () {
console.log("socket连接成功");
},
// socket
error () {
console.log("连接错误");
},
//
getMessage (msg) {
console.log("==websocket接收数据==");
console.log(JSON.parse(msg.data));
const { content } = JSON.parse(msg.data)
// 1234-id
if (content == 1) {
Bus.$emit('matchSocket')
} else if (content == 2) {
Bus.$emit('activitySocket')
} else if (content == 4) {
Bus.$emit('modelSocket')
} else {
this.getNotice()
}
},
// socket
close () {
console.log("socket已经关闭");
},
initSocket ({ id, account }) {
// socket
// this.socket = new WebSocket(`ws://${Setting.isDev ? '192.168.31.51' : location.host}:9100/nakadai/websocket/${id}/${account}`)
this.socket = new WebSocket(`ws://121.37.12.51:9100/nakadai/websocket/${id}/${account}`)
// socket
this.socket.onopen = this.open;
// socket
this.socket.onerror = this.error;
// socket
this.socket.onmessage = this.getMessage;
},
// //
getNotice () { getNotice () {
if (!Setting.isDev) {
this.noticeTimer = setInterval(() => {
this.$get(this.api.messageNotificationList, { this.$get(this.api.messageNotificationList, {
type: 2 type: 2
}).then(res => { }).then(res => {
this.notices = res.notificationList this.notices = res.notificationList
}).catch(res => { }); }).catch(res => { });
}, 5000)
}
}, },
// //
toComment (item) { async toComment (item) {
await this.$post(`${this.api.noticeRead}?isRead=1&notifyId=${item.notifyId}`) //
this.$router.push(`/station/preview?courseId=${item.cid}&commentId=${item.commentId}&notifyId=${item.notifyId}`) this.$router.push(`/station/preview?courseId=${item.cid}&commentId=${item.commentId}&notifyId=${item.notifyId}`)
}, },
// //
getUserInfo () { getUserInfo () {
this.$get(this.api.queryUserInfoDetails).then(res => { this.$get(this.api.queryUserInfoDetails).then(res => {
this.initSocket(res.result.userAccount)
const { userAvatars, userName, userId } = res.result.hrUserInfo || {} const { userAvatars, userName, userId } = res.result.hrUserInfo || {}
userAvatars && this.setAvatar(userAvatars); userAvatars && this.setAvatar(userAvatars);
this.setUserId(userId) this.setUserId(userId)

@ -141,11 +141,11 @@ import { mapState, mapMutations } from "vuex";
import { Loading } from "element-ui"; import { Loading } from "element-ui";
import Setting from "@/setting" import Setting from "@/setting"
import util from "@/libs/util" import util from "@/libs/util"
import Bus from '@/libs/bus'
export default { export default {
data () { data () {
return { return {
timer: null, timer: null,
redisTimer: null,
token: util.local.get(Setting.tokenKey), token: util.local.get(Setting.tokenKey),
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "已结束"], statusList: ["待报名", "取消报名", "马上报名", "报名截止", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "项目开始", "项目结束"], endList: ["报名开始", "报名截止", "报名截止", "项目开始", "项目结束"],
@ -200,17 +200,21 @@ export default {
} }
}, },
mounted () { mounted () {
// websocket
Bus.$on('activitySocket', () => {
this.getData()
})
this.getData() this.getData()
this.$once('hook:beforeDestroy', function () { this.$once('hook:beforeDestroy', function () {
this.clearTimer() this.clearTimer()
clearInterval(this.redisTimer)
}) })
}, },
methods: { methods: {
...mapMutations('match', [ ...mapMutations('match', [
'SET_TYPE' 'SET_TYPE'
]), ]),
getList () { getData () {
this.clearTimer() this.clearTimer()
const { form } = this const { form } = this
const data = { const data = {
@ -281,27 +285,10 @@ export default {
}) })
this.timerList = [] this.timerList = []
}, },
getData () {
// this.loadIns = Loading.service()
this.getList()
if (!Setting.isDev) {
clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000)
}
},
initData () { initData () {
this.page = 1 this.page = 1
this.getData() this.getData()
}, },
// redis
getRedis () {
this.$post(this.api.getRedisCacheActivity).then(({ data }) => {
if (data) {
localStorage.getItem('activityTimestampClient') !== data && this.getList() // redis
localStorage.setItem('activityTimestampClient', data)
}
}).catch(res => { })
},
changeType (type) { changeType (type) {
const { form } = this const { form } = this
form.competitionScope = 3 form.competitionScope = 3

@ -155,6 +155,7 @@ import Setting from "@/setting";
import { mapMutations } from "vuex"; import { mapMutations } from "vuex";
import { Loading } from 'element-ui' import { Loading } from 'element-ui'
import breadcrumb from '@/components/breadcrumb' import breadcrumb from '@/components/breadcrumb'
import Bus from '@/libs/bus'
export default { export default {
components: { breadcrumb }, components: { breadcrumb },
data () { data () {
@ -211,7 +212,6 @@ export default {
playingStages: [] playingStages: []
}, },
timer: null, timer: null,
redisTimer: null,
pickerOptions: { pickerOptions: {
shortcuts: [{ shortcuts: [{
text: '此刻', text: '此刻',
@ -249,18 +249,21 @@ export default {
} }
}, },
mounted () { mounted () {
// websocket
Bus.$on('activitySocket', () => {
this.getData()
})
this.getData() this.getData()
this.$once('hook:beforeDestroy', function () { this.$once('hook:beforeDestroy', function () {
clearInterval(this.timer) clearInterval(this.timer)
clearInterval(this.redisTimer)
}) })
}, },
methods: { methods: {
...mapMutations('activity', [ ...mapMutations('activity', [
'setPage' 'setPage'
]), ]),
getList () { getData () {
// const load = Loading.service()
const { form } = this const { form } = this
this.$post(this.api.myActivities, { this.$post(this.api.myActivities, {
pageNum: this.page, pageNum: this.page,
@ -308,33 +311,12 @@ export default {
this.getData() this.getData()
} }
} }
}).catch(res => { }).catch(res => { })
// load.close()
})
},
getData () {
this.getList()
}, },
initData () { initData () {
this.page = 1; this.page = 1;
this.getData(); this.getData();
}, },
// redis
getRedis () {
this.$post(this.api.getRedisCacheActivity).then(({ data }) => {
if (data) {
localStorage.getItem('activityTimestampClient') !== data && this.getList() // redis
localStorage.setItem('activityTimestampClient', data)
}
}).catch(res => { })
},
getData () {
this.getList()
if (!Setting.isDev) {
clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000)
}
},
add () { add () {
this.$router.push("add"); this.$router.push("add");
}, },
@ -392,7 +374,7 @@ export default {
if (date == "0000-00-00 00:00:00") return "---"; if (date == "0000-00-00 00:00:00") return "---";
return date; return date;
}, },
switchOff (val, row) { async switchOff (val, row) {
this.$post(this.api.disabledEventsActivity, { this.$post(this.api.disabledEventsActivity, {
activityId: row.id, activityId: row.id,
isOpen: val, isOpen: val,
@ -400,6 +382,7 @@ export default {
}).then(res => { }).catch(err => { }).then(res => { }).catch(err => {
row.isOpen = val ? 0 : 1 row.isOpen = val ? 0 : 1
}) })
await this.$post(`${this.api.refreshPageNotification}?content=2`)
}, },
} }
}; };

@ -1,137 +1,198 @@
<template> <template>
<!-- 考核列表 --> <!-- 考核列表 -->
<div class="wrap"> <div class="wrap">
<div class="page" style="padding-bottom: 0;margin-bottom: 12px"> <div class="page"
style="padding-bottom: 0;margin-bottom: 12px">
<h6 class="l-title"> <h6 class="l-title">
<img src="@/assets/img/ass1.png" alt=""> <img src="@/assets/img/ass1.png"
alt="">
考核筛选 考核筛选
</h6> </h6>
<ul class="filter"> <ul class="filter">
<li> <li>
<label>考核时间</label> <label>考核时间</label>
<el-radio-group size="small" v-model="form.month"> <el-radio-group size="small"
<el-radio v-for="(item,index) in dateList" :key="index" :label="item.id" border> v-model="form.month">
<el-radio v-for="(item,index) in dateList"
:key="index"
:label="item.id"
border>
{{ item.name }} {{ item.name }}
</el-radio> </el-radio>
</el-radio-group> </el-radio-group>
<el-date-picker <el-date-picker size="small"
size="small"
v-model="date" v-model="date"
align="right" align="right"
unlink-panels type="daterange" unlink-panels
type="daterange"
start-placeholder="开始日期" start-placeholder="开始日期"
end-placeholder="结束日期" end-placeholder="结束日期"
format="yyyy-MM-dd" format="yyyy-MM-dd"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
clearable clearable
style="width: 300px" style="width: 300px"></el-date-picker>
></el-date-picker>
</li> </li>
</ul> </ul>
<ul class="filter"> <ul class="filter">
<li> <li>
<label>课程名称</label> <label>课程名称</label>
<el-select size="small" v-model="form.curriculumId" @change="initData"> <el-select size="small"
<el-option label="不限" value=""></el-option> v-model="form.curriculumId"
<el-option @change="initData">
v-for="(item,index) in courseList" <el-option label="不限"
value=""></el-option>
<el-option v-for="(item,index) in courseList"
:key="index" :key="index"
:label="item.sysName" :label="item.sysName"
:value="item.sysId" :value="item.sysId"></el-option>
></el-option>
</el-select> </el-select>
</li> </li>
<li> <li>
<label>实验班级</label> <label>实验班级</label>
<el-select size="small" v-model="form.classId" @change="initData"> <el-select size="small"
<el-option label="不限" value=""></el-option> v-model="form.classId"
<el-option @change="initData">
v-for="(item,index) in classList" <el-option label="不限"
value=""></el-option>
<el-option v-for="(item,index) in classList"
:key="index" :key="index"
:label="item.className" :label="item.className"
:value="item.id" :value="item.id"></el-option>
></el-option>
</el-select> </el-select>
</li> </li>
<li> <li>
<label>实验状态</label> <label>实验状态</label>
<el-select size="small" v-model="form.status" @change="initData"> <el-select size="small"
<el-option v-model="form.status"
v-for="(item,index) in statusList" @change="initData">
:key="index" :label="item.name" <el-option v-for="(item,index) in statusList"
:value="item.value" :key="index"
></el-option> :label="item.name"
:value="item.value"></el-option>
</el-select> </el-select>
</li> </li>
<li> <li>
<label>搜索</label> <label>搜索</label>
<el-input placeholder="请输入考核名称" v-model="form.keyWord" clearable></el-input> <el-input placeholder="请输入考核名称"
v-model="form.keyWord"
clearable></el-input>
</li> </li>
</ul> </ul>
</div> </div>
<div class="page"> <div class="page">
<el-table v-loading="listLoading" :data="listData" class="table" stripe header-align="center"> <el-table v-loading="listLoading"
<el-table-column type="index" width="60" label="序号" align="center"> :data="listData"
class="table"
stripe
header-align="center">
<el-table-column type="index"
width="60"
label="序号"
align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.$index + (page - 1) * pageSize + 1 }} {{ scope.$index + (page - 1) * pageSize + 1 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="sysName" label="课程名称" align="center" show-overflow-tooltip></el-table-column> <el-table-column prop="sysName"
<el-table-column prop="experimentalName" label="考核名称" align="center" show-overflow-tooltip></el-table-column> label="课程名称"
<el-table-column prop="className" label="实验班级" align="center"></el-table-column> align="center"
<el-table-column prop="experimentalNum" width="90" label="实验人数" align="center"></el-table-column> show-overflow-tooltip></el-table-column>
<el-table-column prop="experimentDuration" width="90" label="考试时长" align="center"></el-table-column> <el-table-column prop="experimentalName"
<el-table-column prop="createTime" width="160" label="创建时间" align="center"></el-table-column> label="考核名称"
<el-table-column prop="startTime" width="160" label="起始时间" align="center"></el-table-column> align="center"
<el-table-column prop="stopTime" width="160" label="结束时间" align="center"></el-table-column> show-overflow-tooltip></el-table-column>
<el-table-column label="倒计时" width="90" align="center"> <el-table-column prop="className"
label="实验班级"
align="center"></el-table-column>
<el-table-column prop="experimentalNum"
width="90"
label="实验人数"
align="center"></el-table-column>
<el-table-column prop="experimentDuration"
width="90"
label="考试时长"
align="center"></el-table-column>
<el-table-column prop="createTime"
width="160"
label="创建时间"
align="center"></el-table-column>
<el-table-column prop="startTime"
width="160"
label="起始时间"
align="center"></el-table-column>
<el-table-column prop="stopTime"
width="160"
label="结束时间"
align="center"></el-table-column>
<el-table-column label="倒计时"
width="90"
align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ timeFilter(scope.row) }}</span> <span>{{ timeFilter(scope.row) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="考核状态" width="90" align="center"> <el-table-column label="考核状态"
width="90"
align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="ellipsis">{{ status[scope.row.status] }}</span> <span class="ellipsis">{{ status[scope.row.status] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column label="实验状态" align="center">--> <!-- <el-table-column label="实验状态" align="center">-->
<!-- <template slot-scope="scope" v-if="scope.row.show">--> <!-- <template slot-scope="scope" v-if="scope.row.show">-->
<!-- <span class="ellipsis">{{ stuState[scope.row.stuState] }}</span>--> <!-- <span class="ellipsis">{{ stuState[scope.row.stuState] }}</span>-->
<!-- </template>--> <!-- </template>-->
<!-- </el-table-column>--> <!-- </el-table-column>-->
<el-table-column width="100" label="操作" align="center"> <el-table-column width="100"
label="操作"
align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<!--status:考核状态(0待开始 1进行中 2已结束); stuState:学生考试状态(0未考 1在考 2已考)--> <!--status:考核状态(0待开始 1进行中 2已结束); stuState:学生考试状态(0未考 1在考 2已考)-->
<el-button v-if="scope.row.status == 2 && scope.row.stuState == 0" type="text" disabled>未参加</el-button> <el-button v-if="scope.row.status == 2 && scope.row.stuState == 0"
<el-button v-if="(scope.row.status == 2 && scope.row.stuState == 1) || (scope.row.status == 2 && scope.row.stuState == 2 && scope.row.reportId == null)" type="text" disabled> type="text"
disabled>未参加</el-button>
<el-button v-if="(scope.row.status == 2 && scope.row.stuState == 1) || (scope.row.status == 2 && scope.row.stuState == 2 && scope.row.reportId == null)"
type="text"
disabled>
未提交 未提交
</el-button> </el-button>
<el-button v-if="scope.row.status != 2 && (scope.row.stuState == 0 || scope.row.stuState == 1)" type="text" <el-button v-if="scope.row.status != 2 && (scope.row.stuState == 0 || scope.row.stuState == 1)"
@click="entry(scope.row)" :disabled="scope.row.status !== 1">进入 type="text"
@click="entry(scope.row)"
:disabled="scope.row.status !== 1">进入
</el-button> </el-button>
<el-button v-if="scope.row.status == 1 && scope.row.stuState == 2" type="text" disabled>已提交</el-button> <el-button v-if="scope.row.status == 1 && scope.row.stuState == 2"
<el-button v-if="scope.row.status == 2 && scope.row.stuState == 2 && scope.row.reportId" type="text" type="text"
disabled>已提交</el-button>
<el-button v-if="scope.row.status == 2 && scope.row.stuState == 2 && scope.row.reportId"
type="text"
@click="show(scope.row)">查看成绩 @click="show(scope.row)">查看成绩
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="pagination"> <div class="pagination">
<el-pagination <el-pagination background
background
layout="total, prev, pager, next" layout="total, prev, pager, next"
:total="totals" :total="totals"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
:current-page="page" :current-page="page"></el-pagination>
></el-pagination>
</div> </div>
</div> </div>
<el-dialog title="请输入邀请码" :visible.sync="icVisible" width="30%" @close="closeIc" center <el-dialog title="请输入邀请码"
:visible.sync="icVisible"
width="30%"
@close="closeIc"
center
:close-on-click-modal="false"> :close-on-click-modal="false">
<el-input v-model="invitationCode" placeholder="邀请码" maxlength="6"></el-input> <el-input v-model="invitationCode"
<div slot="footer" class="dialog-footer"> placeholder="邀请码"
<el-button type="primary" @click="saveIc"> </el-button> maxlength="6"></el-input>
<div slot="footer"
class="dialog-footer">
<el-button type="primary"
@click="saveIc"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
@ -144,7 +205,7 @@ import util from "@/libs/util";
export default { export default {
name: "ass", name: "ass",
data() { data () {
return { return {
tickerArr: [], tickerArr: [],
classList: [], classList: [],
@ -197,24 +258,24 @@ export default {
page: 1, page: 1,
pageSize: 10, pageSize: 10,
totals: 0, totals: 0,
listLoading:false,// listLoading: false,//
icVisible: false, icVisible: false,
invitationCode: "", invitationCode: "",
searchTimer: null, searchTimer: null,
curRow: {}, curRow: {},
ticker: null, // ticker: null, //
item:{ item: {
}, },
projectId:null, projectId: null,
url:'', url: '',
cid:null, cid: null,
systemId:null, systemId: null,
assessmentId:'', assessmentId: '',
classId:'', classId: '',
stopTime:'', stopTime: '',
sss:1, sss: 1,
datassdata:0, datassdata: 0,
}; };
}, },
computed: { computed: {
@ -223,7 +284,7 @@ export default {
]) ])
}, },
watch: { watch: {
"form.month": function(val) { "form.month": function (val) {
if (val) { if (val) {
let unit = 24 * 60 * 60 * 1000; let unit = 24 * 60 * 60 * 1000;
this.date = [util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() - unit * 30 * val)), util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() + unit))]; this.date = [util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() - unit * 30 * val)), util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() + unit))];
@ -231,7 +292,7 @@ export default {
this.date = []; this.date = [];
} }
}, },
date: function(val) { date: function (val) {
if (val) { if (val) {
this.form.startTime = val[0]; this.form.startTime = val[0];
this.form.endTime = val[1]; this.form.endTime = val[1];
@ -241,16 +302,16 @@ export default {
} }
this.initData(); this.initData();
}, },
'form.keyWord': function(val) { 'form.keyWord': function (val) {
clearTimeout(this.searchTimer); clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => { this.searchTimer = setTimeout(() => {
this.initData(); this.initData();
}, 500); }, 500);
} }
}, },
mounted() { mounted () {
// //
this.$once("hook:beforeDestroy", function() { this.$once("hook:beforeDestroy", function () {
this.sss = 0 this.sss = 0
clearInterval(this.ticker); clearInterval(this.ticker);
this.ticker = null; this.ticker = null;
@ -260,28 +321,28 @@ export default {
this.getClassData(); this.getClassData();
}, },
methods: { methods: {
timeFilter(countDown) { timeFilter (countDown) {
if (countDown.countDown > 0) { if (countDown.countDown > 0) {
let h = Math.floor(countDown.countDown / (60 * 60)); let h = Math.floor(countDown.countDown / (60 * 60));
let m = Math.floor(countDown.countDown % (60 * 60) / 60); let m = Math.floor(countDown.countDown % (60 * 60) / 60);
let s = Math.floor(countDown.countDown % (60 * 60) % 60); let s = Math.floor(countDown.countDown % (60 * 60) % 60);
return `${h > 9 ? h : `0${h}`}:${m > 9 ? m : `0${m}`}:${s > 9 ? s : `0${s}`}`; return `${h > 9 ? h : `0${h}`}:${m > 9 ? m : `0${m}`}:${s > 9 ? s : `0${s}`}`;
} else { } else {
if (countDown.status == 1){ if (countDown.status == 1) {
this.$post(`${this.api.collectPaper}?id=${countDown.assessmentId}`).then(res => { this.$post(`${this.api.collectPaper}?id=${countDown.assessmentId}`).then(res => {
}) })
}else{ } else {
} }
return "00:00:00"; return "00:00:00";
} }
}, },
beginTimer() { beginTimer () {
this.ticker = setInterval(() => { this.ticker = setInterval(() => {
if(this.sss == 0){ if (this.sss == 0) {
this.ticker = null; this.ticker = null;
clearInterval(this.ticker); clearInterval(this.ticker);
}else{ } else {
for (let i = 0; i < this.listData.length; i++) { for (let i = 0; i < this.listData.length; i++) {
const item = this.listData[i]; const item = this.listData[i];
if (item.countDown > 0) { if (item.countDown > 0) {
@ -301,7 +362,7 @@ export default {
} }
}, 1000); }, 1000);
}, },
getData() { getData () {
this.listLoading = true; this.listLoading = true;
this.sss = 0 this.sss = 0
this.listData.splice(0); this.listData.splice(0);
@ -315,8 +376,8 @@ export default {
}; };
this.$post(this.api.pageStuAssessment, data).then(res => { this.$post(this.api.pageStuAssessment, data).then(res => {
this.listData = res.list; this.listData = res.list;
for (var i=0;i<this.listData.length;i++){ for (var i = 0; i < this.listData.length; i++) {
if (this.listData[i].reportId == undefined){ if (this.listData[i].reportId == undefined) {
this.listData[i].reportId = null this.listData[i].reportId = null
} }
} }
@ -355,31 +416,31 @@ export default {
this.listLoading = false; this.listLoading = false;
}); });
}, },
initData() { initData () {
this.sss = 0 this.sss = 0
this.page = 1; this.page = 1;
this.getData(); this.getData();
}, },
getCourseData() { getCourseData () {
this.$get(this.api.getPythonSysByStuAccountId).then(res => { this.$get(this.api.getPythonSysByStuAccountId).then(res => {
this.courseList = res.list; this.courseList = res.list;
}).catch(err => { }).catch(err => {
}); });
}, },
getClassData() { getClassData () {
this.$post(this.api.myClassByStudent).then(({ data }) => { this.$post(this.api.myClassByStudent).then(({ data }) => {
this.classList = data.filter(e => e) this.classList = data.filter(e => e)
}).catch(err => { }).catch(err => {
}); });
}, },
handleCurrentChange(val) { // handleCurrentChange (val) { //
this.page = val; this.page = val;
this.sss = 0 this.sss = 0
this.getData(); this.getData();
}, },
entry(row) { // entry (row) { //
this.item = row this.item = row
this.assessmentId =this.item.assessmentId this.assessmentId = this.item.assessmentId
this.classId = this.item.classId this.classId = this.item.classId
if (row.status == 0) { if (row.status == 0) {
return util.warningMsg("该实验尚未开始"); return util.warningMsg("该实验尚未开始");
@ -395,8 +456,8 @@ export default {
this.cid = res.info.cid this.cid = res.info.cid
this.systemId = res.info.systemId this.systemId = res.info.systemId
var date = res.assessmentInfo.stopTime; var date = res.assessmentInfo.stopTime;
date = date.substring(0,19); date = date.substring(0, 19);
date = date.replace(/-/g,'/'); date = date.replace(/-/g, '/');
this.stopTime = new Date(date).getTime(); this.stopTime = new Date(date).getTime();
this.goSubSystem(); this.goSubSystem();
}).catch(res => { }).catch(res => {
@ -406,10 +467,10 @@ export default {
} }
} }
}, },
show(row) { // show (row) { //
this.$router.push(`/record/show?reportId=${row.reportId}`); this.$router.push(`/record/show?reportId=${row.reportId}`);
}, },
saveIc() { saveIc () {
if (!this.invitationCode) return util.warningMsg("请输入邀请码"); if (!this.invitationCode) return util.warningMsg("请输入邀请码");
if (!this.invitationCode || String(this.invitationCode).length < 6 || isNaN(this.invitationCode)) return util.warningMsg("请输入6位纯数字邀请码"); if (!this.invitationCode || String(this.invitationCode).length < 6 || isNaN(this.invitationCode)) return util.warningMsg("请输入6位纯数字邀请码");
this.$post(`${this.api.enterExam}?assessmentId=${this.item.assessmentId}&classId=${this.item.classId}&invitationCode=${this.invitationCode}`).then(res => { this.$post(`${this.api.enterExam}?assessmentId=${this.item.assessmentId}&classId=${this.item.classId}&invitationCode=${this.invitationCode}`).then(res => {
@ -425,10 +486,10 @@ export default {
}).catch(res => { }).catch(res => {
}); });
}, },
closeIc() { closeIc () {
this.invitationCode = ""; this.invitationCode = "";
}, },
goSubSystem() { goSubSystem () {
let token = util.local.get(Setting.tokenKey) let token = util.local.get(Setting.tokenKey)
const classId = this.classId const classId = this.classId
const classItem = this.classList.find(e => e.id == classId) const classItem = this.classList.find(e => e.id == classId)
@ -445,14 +506,15 @@ export default {
util.cookies.set("systemId", this.systemId); util.cookies.set("systemId", this.systemId);
util.cookies.set('fromManager', '', -1) util.cookies.set('fromManager', '', -1)
util.cookies.set('competitionId', '', -1) util.cookies.set('competitionId', '', -1)
util.cookies.set('isSubmit', '', -1)
let href = '' let href = ''
if (curriculumId == 11){ if (curriculumId == 11) {
href = `${Setting.systemPath}/#/index/list?token=${token}&cid=${this.cid}&systemId=${this.systemId}&projectId=${this.projectId}&assessmentId=${this.assessmentId}&classId=${this.classId}&stopTime=${this.stopTime}`; href = `${Setting.systemPath}/#/index/list?token=${token}&cid=${this.cid}&systemId=${this.systemId}&projectId=${this.projectId}&assessmentId=${this.assessmentId}&classId=${this.classId}&stopTime=${this.stopTime}`;
} else if (curriculumId == 12) { } else if (curriculumId == 12) {
// //
window.open(`http://120.78.139.126:8879?systemId=${this.systemId}&courseId=${this.cid}&projectId=${this.projectId}&token=${token}&userId=${this.userId}&assessmentId=${this.assessmentId}&classId=${this.curRow.classId}`); window.open(`http://120.78.139.126:8879?systemId=${this.systemId}&courseId=${this.cid}&projectId=${this.projectId}&token=${token}&userId=${this.userId}&assessmentId=${this.assessmentId}&classId=${this.curRow.classId}`);
} else { } else {
if(process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
href = 'http://192.168.31.125:8085/#/' href = 'http://192.168.31.125:8085/#/'
} else { } else {
href = `${location.origin}/pyTrials` // 8pythoncookiesystemId href = `${location.origin}/pyTrials` // 8pythoncookiesystemId

@ -1425,6 +1425,7 @@ export default {
util.cookies.set('courseId', form.cid) util.cookies.set('courseId', form.cid)
util.cookies.set('curriculumName', escape(form.systemName)) util.cookies.set('curriculumName', escape(form.systemName))
util.cookies.set('systemId', form.systemId) util.cookies.set('systemId', form.systemId)
util.cookies.set('isSubmit', '', -1)
util.cookies.set('competitionId', this.form.id) util.cookies.set('competitionId', this.form.id)
util.cookies.set('stageId', form.stageId) util.cookies.set('stageId', form.stageId)
util.cookies.set('teamId', this.form.competitionRegistration.teamId) util.cookies.set('teamId', this.form.competitionRegistration.teamId)
@ -1442,7 +1443,7 @@ export default {
// //
toSub () { toSub () {
const { form } = this const { form } = this
const { systemId, projectId, cid, stageId } = this.curStage const { systemId, projectId, cid, stageId, endTime } = this.curStage
const competitionId = form.id const competitionId = form.id
const teamId = form.competitionRegistration.teamId const teamId = form.competitionRegistration.teamId
let token = util.local.get(Setting.tokenKey); let token = util.local.get(Setting.tokenKey);
@ -1451,7 +1452,7 @@ export default {
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true` location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
} else if (systemId == 12) { } else if (systemId == 12) {
// //
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}`); window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&endTime=${endTime}`);
} else { } else {
// python // python
this.toPython(this.curProject) this.toPython(this.curProject)

@ -3,15 +3,22 @@
<div class="search"> <div class="search">
<h6>赛事竞技精彩纷呈</h6> <h6>赛事竞技精彩纷呈</h6>
<div class="input"> <div class="input">
<img src="@/assets/img/search.png" alt=""> <img src="@/assets/img/search.png"
<input type="text" placeholder="请输入关键词" v-model="keyword"> alt="">
<input type="text"
placeholder="请输入关键词"
v-model="keyword">
</div> </div>
</div> </div>
<div class="main"> <div class="main">
<div class="center-wrap list-inner"> <div class="center-wrap list-inner">
<ul v-if="token" class="nav"> <ul v-if="token"
<li :class="{ active: form.eventType === item.id }" v-for="(item, index) in typeList" :key="index" @click="changeType(item.id)">{{ item.name }} class="nav">
<li :class="{ active: form.eventType === item.id }"
v-for="(item, index) in typeList"
:key="index"
@click="changeType(item.id)">{{ item.name }}
</li> </li>
</ul> </ul>
<div class="list-wrap"> <div class="list-wrap">
@ -21,41 +28,54 @@
<dl v-if="form.eventType !== 1"> <dl v-if="form.eventType !== 1">
<dt>比赛范围</dt> <dt>比赛范围</dt>
<template v-if="form.eventType === 2"> <template v-if="form.eventType === 2">
<dd v-for="(item, i) in squareScopes" :key="i" :class="{active: form.competitionScope == item.id}" @click="changeScope(item.id)">{{ item.name }}</dd> <dd v-for="(item, i) in squareScopes"
:key="i"
:class="{active: form.competitionScope == item.id}"
@click="changeScope(item.id)">{{ item.name }}</dd>
</template> </template>
<template v-if="form.eventType === 3"> <template v-if="form.eventType === 3">
<dd v-for="(item, i) in scopes" :key="i" :class="{active: form.competitionScope == item.id}" @click="changeScope(item.id)">{{ item.name }}</dd> <dd v-for="(item, i) in scopes"
:key="i"
:class="{active: form.competitionScope == item.id}"
@click="changeScope(item.id)">{{ item.name }}</dd>
</template> </template>
<template v-if="form.eventType !== 1 && form.competitionScope === 2"> <template v-if="form.eventType !== 1 && form.competitionScope === 2">
<div class="select-wrap"> <div class="select-wrap">
<span class="label">省份</span> <span class="label">省份</span>
<el-select size="small" v-model="form.provinceId" clearable @change="getCity"> <el-select size="small"
<el-option label="不限" value=""></el-option> v-model="form.provinceId"
<el-option clearable
v-for="(item,index) in provinces" @change="getCity">
<el-option label="不限"
value=""></el-option>
<el-option v-for="(item,index) in provinces"
:key="index" :key="index"
:label="item.provinceName" :label="item.provinceName"
:value="item.provinceId" :value="item.provinceId"></el-option>
></el-option>
</el-select> </el-select>
</div> </div>
<div class="select-wrap"> <div class="select-wrap">
<span class="label">城市</span> <span class="label">城市</span>
<el-select size="small" v-model="form.cityId" clearable @change="initData"> <el-select size="small"
<el-option label="不限" value=""></el-option> v-model="form.cityId"
<el-option clearable
v-for="(item,index) in cities" @change="initData">
<el-option label="不限"
value=""></el-option>
<el-option v-for="(item,index) in cities"
:key="index" :key="index"
:label="item.cityName" :label="item.cityName"
:value="item.cityId" :value="item.cityId"></el-option>
></el-option>
</el-select> </el-select>
</div> </div>
</template> </template>
</dl> </dl>
<dl> <dl>
<dt>筛选排序</dt> <dt>筛选排序</dt>
<dd v-for="(item, i) in sorts" :key="i" :class="{active: form.sequence == item.id}" @click="changeSort(item.id)">{{ item.name }}</dd> <dd v-for="(item, i) in sorts"
:key="i"
:class="{active: form.sequence == item.id}"
@click="changeSort(item.id)">{{ item.name }}</dd>
</dl> </dl>
</div> </div>
</div> </div>
@ -63,11 +83,16 @@
<div class="list"> <div class="list">
<template v-if="listData.length"> <template v-if="listData.length">
<ul> <ul>
<li v-for="(item,index) in listData" :key="index" @click="toDetail(item)"> <li v-for="(item,index) in listData"
:key="index"
@click="toDetail(item)">
<div class="left"> <div class="left">
<el-button v-if="item.status === 1 || item.status === 2 || item.curStage" :class="['stage-label', {playing: item.curStage}]" type="primary">{{ item.status === 1 || item.status === 2 ? '报名中' : item.curStage ? '竞赛中' : '' }}</el-button> <el-button v-if="item.status === 1 || item.status === 2 || item.curStage"
:class="['stage-label', {playing: item.curStage}]"
type="primary">{{ item.status === 1 || item.status === 2 ? '报名中' : item.curStage ? '竞赛中' : '' }}</el-button>
<div class="cover"> <div class="cover">
<img :src="item.coverUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20220623/png/1539857403162943488.png'" alt=""> <img :src="item.coverUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20220623/png/1539857403162943488.png'"
alt="">
</div> </div>
<div class="info"> <div class="info">
<div class="title">{{ item.competitionName }}</div> <div class="title">{{ item.competitionName }}</div>
@ -97,27 +122,37 @@
</div> </div>
</div> </div>
<div class="right"> <div class="right">
<el-dropdown v-if="item.playingStages && item.playingStages.length > 1" class="m-l-10" @click.stop="stageClick" @command="e => chooseStage(e, item)"> <el-dropdown v-if="item.playingStages && item.playingStages.length > 1"
<el-button type="primary" style="background-color: #f96d6d;border: 0;"> class="m-l-10"
@click.stop="stageClick"
@command="e => chooseStage(e, item)">
<el-button type="primary"
style="background-color: #f96d6d;border: 0;">
选择竞赛<i class="el-icon-arrow-down el-icon--right"></i> 选择竞赛<i class="el-icon-arrow-down el-icon--right"></i>
</el-button> </el-button>
<el-dropdown-menu slot="dropdown"> <el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="(stage, i) in item.playingStages" :key="i" :command="stage">进入{{ stage.stageName }}</el-dropdown-item> <el-dropdown-item v-for="(stage, i) in item.playingStages"
:key="i"
:command="stage">进入{{ stage.stageName }}</el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
<p class="status" <p class="status"
v-else-if="item.status != 4 || (item.status == 4 && item.curStage)" v-else-if="item.status != 4 || (item.status == 4 && item.curStage)"
:class="{wait: item.status == 0,signing: item.status == 2,signed: item.status == 1,playing: item.status == 4 && item.curStage,finish: item.status == 3 || item.status == 5}" :title="item.status == 4 ? item.stageName : statusList[item.status]" :class="{wait: item.status == 0,signing: item.status == 2,signed: item.status == 1,playing: item.status == 4 && item.curStage,finish: item.status == 3 || item.status == 5}"
:title="item.status == 4 ? item.stageName : statusList[item.status]"
@click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}</p> @click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}</p>
<p class="end-text" v-if="item.end"> <p class="end-text"
v-if="item.end">
距离{{ item.status == 4 ? item.endText : endList[item.status] }}还有 距离{{ item.status == 4 ? item.endText : endList[item.status] }}还有
<em >{{ item.end }}</em> <em>{{ item.end }}</em>
</p> </p>
</div> </div>
</li> </li>
</ul> </ul>
<div class="pagination"> <div class="pagination">
<el-pagination background layout="total, prev, pager, next" :total="totals" <el-pagination background
layout="total, prev, pager, next"
:total="totals"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
:current-page="page"> :current-page="page">
</el-pagination> </el-pagination>
@ -126,7 +161,8 @@
<template v-else> <template v-else>
<div class="empty"> <div class="empty">
<div> <div>
<img src="@/assets/img/none.png" alt=""> <img src="@/assets/img/none.png"
alt="">
<p>暂无赛事</p> <p>暂无赛事</p>
</div> </div>
</div> </div>
@ -136,56 +172,95 @@
</div> </div>
</div> </div>
<el-dialog title="报名"
<el-dialog title="报名" :visible.sync="peopleSignupVisible" :close-on-click-modal="false" width="300px"> :visible.sync="peopleSignupVisible"
:close-on-click-modal="false"
width="300px">
<el-form class="dia-form"> <el-form class="dia-form">
<el-form-item> <el-form-item>
<el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="peopleSignupForm.registrationInvitationCode"></el-input> <el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="peopleSignupForm.registrationInvitationCode"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer"
<el-button size="small" type="primary" @click="peopleSignupSubmit">报名</el-button> class="dialog-footer">
<el-button size="small" @click="peopleSignupVisible = false">取消</el-button> <el-button size="small"
type="primary"
@click="peopleSignupSubmit">报名</el-button>
<el-button size="small"
@click="peopleSignupVisible = false">取消</el-button>
</span> </span>
</el-dialog> </el-dialog>
<el-dialog title="报名" :visible.sync="enterVisible" :close-on-click-modal="false" width="300px"> <el-dialog title="报名"
:visible.sync="enterVisible"
:close-on-click-modal="false"
width="300px">
<el-form class="dia-form"> <el-form class="dia-form">
<p style="margin-bottom: 5px">请选择要加入的团队</p> <p style="margin-bottom: 5px">请选择要加入的团队</p>
<el-form-item> <el-form-item>
<el-select class="w-100" v-model="enterForm.teamId" filterable> <el-select class="w-100"
<el-option v-for="(item, i) in teams" :key="i" :label="item.teamName" :value="item.teamId"></el-option> v-model="enterForm.teamId"
filterable>
<el-option v-for="(item, i) in teams"
:key="i"
:label="item.teamName"
:value="item.teamId"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-input placeholder="请输入6位数团队邀请码" maxlength="6" v-model="enterForm.invitationCode"></el-input> <el-input placeholder="请输入6位数团队邀请码"
maxlength="6"
v-model="enterForm.invitationCode"></el-input>
</el-form-item> </el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode"> <el-form-item v-if="curItem.setup.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="enterForm.registrationInvitationCode"></el-input> <el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="enterForm.registrationInvitationCode"></el-input>
</el-form-item> </el-form-item>
<p class="tips"> <p class="tips">
查找不到团队点击 <el-link :underline="false" type="primary" @click="toTeam">创建团队</el-link> 查找不到团队点击 <el-link :underline="false"
type="primary"
@click="toTeam">创建团队</el-link>
</p> </p>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer"
<el-button size="small" type="primary" @click="enterSubmit">报名</el-button> class="dialog-footer">
<el-button size="small" @click="enterVisible = false">取消</el-button> <el-button size="small"
type="primary"
@click="enterSubmit">报名</el-button>
<el-button size="small"
@click="enterVisible = false">取消</el-button>
</span> </span>
</el-dialog> </el-dialog>
<el-dialog title="创建团队" :visible.sync="teamVisible" :close-on-click-modal="false" width="300px"> <el-dialog title="创建团队"
:visible.sync="teamVisible"
:close-on-click-modal="false"
width="300px">
<el-form class="dia-form"> <el-form class="dia-form">
<el-form-item> <el-form-item>
<el-input placeholder="请输入团队名称" maxlength="10" v-model="teamForm.teamName"></el-input> <el-input placeholder="请输入团队名称"
maxlength="10"
v-model="teamForm.teamName"></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-input placeholder="请输入6位数团队邀请码" maxlength="6" v-model="teamForm.invitationCode"></el-input> <el-input placeholder="请输入6位数团队邀请码"
maxlength="6"
v-model="teamForm.invitationCode"></el-input>
</el-form-item> </el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode"> <el-form-item v-if="curItem.setup.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="teamForm.registrationInvitationCode"></el-input> <el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="teamForm.registrationInvitationCode"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer"
<el-button size="small" type="primary" @click="teamSubmit">创建并报名</el-button> class="dialog-footer">
<el-button size="small" @click="teamVisible = false">取消</el-button> <el-button size="small"
type="primary"
@click="teamSubmit">创建并报名</el-button>
<el-button size="small"
@click="teamVisible = false">取消</el-button>
</span> </span>
</el-dialog> </el-dialog>
</div> </div>
@ -196,13 +271,12 @@ import { mapState, mapMutations } from "vuex";
import { Loading } from "element-ui"; import { Loading } from "element-ui";
import Setting from "@/setting" import Setting from "@/setting"
import util from "@/libs/util" import util from "@/libs/util"
import Bus from '@/libs/bus'
export default { export default {
name: "match", name: "match",
data() { data () {
return { return {
timer: null, timer: null,
redisTimer: null,
token: util.local.get(Setting.tokenKey), token: util.local.get(Setting.tokenKey),
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"], statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""], endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
@ -319,28 +393,32 @@ export default {
]) ])
}, },
watch: { watch: {
keyword: function(val) { keyword: function (val) {
clearTimeout(this.searchTimer); clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => { this.searchTimer = setTimeout(() => {
this.initData(); this.initData();
}, 500); }, 500);
} }
}, },
mounted() { mounted () {
// websocket
Bus.$on('matchSocket', () => {
this.getData()
})
this.form.eventType = this.eventType this.form.eventType = this.eventType
this.SET_TYPE(2) this.SET_TYPE(2)
this.getProvince() this.getProvince()
this.getData() this.getData()
this.$once('hook:beforeDestroy', function() { this.$once('hook:beforeDestroy', function () {
this.clearTimer() this.clearTimer()
clearInterval(this.redisTimer)
}) })
}, },
methods: { methods: {
...mapMutations('match', [ ...mapMutations('match', [
'SET_TYPE' 'SET_TYPE'
]), ]),
getList() { getData () {
this.clearTimer() this.clearTimer()
const { form } = this const { form } = this
const { eventType, competitionScope } = form const { eventType, competitionScope } = form
@ -381,7 +459,7 @@ export default {
}) })
}, },
// //
handleStatus() { handleStatus () {
this.listData.map(item => { this.listData.map(item => {
if (item.signUpStartTime && item.signUpEndTime && item.playStartTime && item.playEndTime) { if (item.signUpStartTime && item.signUpEndTime && item.playStartTime && item.playEndTime) {
let total = '' let total = ''
@ -473,38 +551,30 @@ export default {
}) })
}, },
// //
clearTimer() { clearTimer () {
this.timerList.forEach(n => { this.timerList.forEach(n => {
clearInterval(n) clearInterval(n)
}) })
this.timerList = [] this.timerList = []
}, },
getData() { initData () {
// this.loadIns = Loading.service()
this.getList()
if (!Setting.isDev) {
clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000)
}
},
initData() {
this.page = 1 this.page = 1
this.getData() this.getData()
}, },
// redis // redis
getRedis() { getRedis () {
this.$post(this.api.getRedisCacheCompetition).then(({ data }) => { this.$post(this.api.getRedisCacheCompetition).then(({ data }) => {
data && this.getList() data && this.getList()
}).catch(res => {}) }).catch(res => { })
}, },
// //
getProvince() { getProvince () {
this.$get(this.api.queryProvince).then(({ list }) => { this.$get(this.api.queryProvince).then(({ list }) => {
this.provinces = list this.provinces = list
}).catch(res => {}) }).catch(res => { })
}, },
// //
getCity() { getCity () {
const { form } = this const { form } = this
form.cityId = '' form.cityId = ''
form.provinceId ? form.provinceId ?
@ -513,10 +583,10 @@ export default {
}).then(({ list }) => { }).then(({ list }) => {
this.cities = list this.cities = list
this.initData() this.initData()
}).catch(res => {}) : }).catch(res => { }) :
this.initData() this.initData()
}, },
changeType(type) { changeType (type) {
const { form } = this const { form } = this
form.competitionScope = 3 form.competitionScope = 3
form.provinceId = '' form.provinceId = ''
@ -526,26 +596,26 @@ export default {
this.initData() this.initData()
}, },
// //
changeScope(type) { changeScope (type) {
this.form.competitionScope = type this.form.competitionScope = type
this.initData() this.initData()
}, },
// //
changeSort(type) { changeSort (type) {
this.form.sequence = type this.form.sequence = type
this.initData() this.initData()
}, },
toDetail(item) { toDetail (item) {
this.SET_TYPE(this.form.eventType) this.SET_TYPE(this.form.eventType)
this.$router.push(`/match/details?id=${item.id}`); this.$router.push(`/match/details?id=${item.id}`);
}, },
handleCurrentChange(val) { handleCurrentChange (val) {
this.page = val; this.page = val;
this.getData(); this.getData();
}, },
// //
peopleSignupSubmit() { peopleSignupSubmit () {
this.$post(this.api.addCompetitionRegistration, { this.$post(this.api.addCompetitionRegistration, {
competitionId: this.curRow.id, competitionId: this.curRow.id,
registrationInvitationCode: this.peopleSignupForm.registrationInvitationCode registrationInvitationCode: this.peopleSignupForm.registrationInvitationCode
@ -553,10 +623,10 @@ export default {
this.peopleSignupVisible = false this.peopleSignupVisible = false
this.getData() this.getData()
this.$message.success('报名成功') this.$message.success('报名成功')
}).catch(res => {}) }).catch(res => { })
}, },
// //
enterSubmit() { enterSubmit () {
const form = this.enterForm const form = this.enterForm
if (!form.teamId) return util.errorMsg('请选择团队') if (!form.teamId) return util.errorMsg('请选择团队')
if (!form.invitationCode) return util.errorMsg('请输入团队邀请码') if (!form.invitationCode) return util.errorMsg('请输入团队邀请码')
@ -565,12 +635,12 @@ export default {
this.enterVisible = false this.enterVisible = false
this.getData() this.getData()
util.successMsg('报名成功!') util.successMsg('报名成功!')
}).catch(res => {}) }).catch(res => { })
}, },
// //
toTeam() { toTeam () {
this.teamForm = { this.teamForm = {
competitionId: this.curItem.id, competitionId: this.curItem.id,
teamName: '', teamName: '',
@ -581,16 +651,16 @@ export default {
this.teamVisible = true this.teamVisible = true
}, },
// //
getTeam() { getTeam () {
this.$get(this.api.searchTeam, { this.$get(this.api.searchTeam, {
teamName: '', teamName: '',
competitionId: this.curItem.id competitionId: this.curItem.id
}).then(({ teamList }) => { }).then(({ teamList }) => {
this.teams = teamList this.teams = teamList
}).catch(res => {}) }).catch(res => { })
}, },
// //
teamSubmit() { teamSubmit () {
const form = this.teamForm const form = this.teamForm
if (!form.teamName) return util.errorMsg('请输入团队名称') if (!form.teamName) return util.errorMsg('请输入团队名称')
if (this.teamNameRepeat) return util.errorMsg('团队名称重复,请重新输入') if (this.teamNameRepeat) return util.errorMsg('团队名称重复,请重新输入')
@ -601,16 +671,16 @@ export default {
this.enterVisible = false this.enterVisible = false
this.getData() this.getData()
util.successMsg('报名成功!') util.successMsg('报名成功!')
}).catch(res => {}) }).catch(res => { })
}, },
stageClick(e) {}, stageClick (e) { },
// //
chooseStage(e, item) { chooseStage (e, item) {
item.curStage = e item.curStage = e
this.signup(item) this.signup(item)
}, },
// //
getAllow(item) { getAllow (item) {
// //
if (item.rule === 1) { if (item.rule === 1) {
this.$post(this.api.allowedParticipateCompetition, { this.$post(this.api.allowedParticipateCompetition, {
@ -620,13 +690,13 @@ export default {
teamId: item.teamId, teamId: item.teamId,
}).then(res => { }).then(res => {
this.toSub() this.toSub()
}).catch(res => {}) }).catch(res => { })
} else { } else {
this.toSub() this.toSub()
} }
}, },
// //
signup(item) { signup (item) {
const { status, id } = item const { status, id } = item
const { competitionType } = item.setup const { competitionType } = item.setup
// //
@ -644,7 +714,7 @@ export default {
teamId: item.teamId, teamId: item.teamId,
}).then(res => { }).then(res => {
this.getAllow(item) this.getAllow(item)
}).catch(res => {}) }).catch(res => { })
} else { } else {
this.getAllow(item) this.getAllow(item)
} }
@ -670,7 +740,7 @@ export default {
}).then(res => { }).then(res => {
this.getData() this.getData()
this.$message.success('报名成功') this.$message.success('报名成功')
}).catch(res => {}) }).catch(res => { })
} }
} }
} else if (status == 1) { } else if (status == 1) {
@ -681,8 +751,8 @@ export default {
this.$post(`${this.api.cancelRegistration}?competitionId=${item.id}`).then(res => { this.$post(`${this.api.cancelRegistration}?competitionId=${item.id}`).then(res => {
this.getData() this.getData()
this.$message.success('取消报名成功') this.$message.success('取消报名成功')
}).catch(res => {}) }).catch(res => { })
}).catch(() => {}) }).catch(() => { })
} }
} else { } else {
this.$confirm('请先登录,是否直接前往登录?', "提示", { this.$confirm('请先登录,是否直接前往登录?', "提示", {
@ -690,11 +760,11 @@ export default {
}).then(() => { }).then(() => {
this.SET_SOURCE(item.id) this.SET_SOURCE(item.id)
this.$router.push('/login') this.$router.push('/login')
}).catch(() => {}) }).catch(() => { })
} }
}, },
// python // python
toPython() { toPython () {
const form = this.curItem.curStage const form = this.curItem.curStage
let token = util.local.get(Setting.tokenKey); let token = util.local.get(Setting.tokenKey);
util.cookies.set('assessmentId', '', -1) util.cookies.set('assessmentId', '', -1)
@ -712,6 +782,7 @@ export default {
util.cookies.set('resultsDetails', form.resultsDetails) util.cookies.set('resultsDetails', form.resultsDetails)
util.cookies.set('resultAnnouncementTime', form.resultAnnouncementTime) util.cookies.set('resultAnnouncementTime', form.resultAnnouncementTime)
util.cookies.set('fromManager', '', -1) util.cookies.set('fromManager', '', -1)
util.cookies.set('isSubmit', '', -1)
// 8pythoncookiesystemId // 8pythoncookiesystemId
location.href = process.env.NODE_ENV === 'development' ? location.href = process.env.NODE_ENV === 'development' ?
`http://${location.hostname}:8085/#/` : `http://${location.hostname}:8085/#/` :
@ -720,9 +791,9 @@ export default {
`${location.origin}/pyTrials` `${location.origin}/pyTrials`
}, },
// //
toSub() { toSub () {
const form = this.curItem const form = this.curItem
const { systemId, projectId, cid, stageId } = form.curStage const { systemId, projectId, cid, stageId, endTime } = form.curStage
const competitionId = form.id const competitionId = form.id
const teamId = form.teamId const teamId = form.teamId
let token = util.local.get(Setting.tokenKey); let token = util.local.get(Setting.tokenKey);
@ -731,7 +802,7 @@ export default {
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true` location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
} else if (systemId == 12) { } else if (systemId == 12) {
// //
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}`); window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&endTime=${endTime}`);
} else { } else {
// python // python
this.toPython() this.toPython()
@ -746,9 +817,8 @@ export default {
position: relative; position: relative;
padding: 100px 0 130px; padding: 100px 0 130px;
text-align: center; text-align: center;
background: url(../../../assets/img/match-bg4.png) (27px 10px)/auto no-repeat, background: url(../../../assets/img/match-bg4.png) (27px 10px) / auto no-repeat,
url(../../../assets/img/match-bg5.png) (98% 20px)/auto no-repeat, url(../../../assets/img/match-bg5.png) (98% 20px) / auto no-repeat, url(../../../assets/img/match-bg3.png) 0 0/100% 100% no-repeat;
url(../../../assets/img/match-bg3.png) 0 0/100% 100% no-repeat;
h6 { h6 {
margin-bottom: 25px; margin-bottom: 25px;
font-size: 26px; font-size: 26px;
@ -776,9 +846,9 @@ export default {
border-radius: 4px; border-radius: 4px;
} }
} }
.main{ .main {
background: url(../../../assets/img/match-bg1.png) (0px 95px)/auto auto no-repeat, background: url(../../../assets/img/match-bg1.png) (0px 95px) / auto auto no-repeat,
url(../../../assets/img/match-bg2.png) (98% bottom)/auto auto no-repeat; url(../../../assets/img/match-bg2.png) (98% bottom) / auto auto no-repeat;
.center-wrap { .center-wrap {
width: 1078px; width: 1078px;
} }
@ -827,9 +897,9 @@ export default {
.list-inner { .list-inner {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items:flex-start; align-items: flex-start;
} }
.nav{ .nav {
width: 156px; width: 156px;
text-align: right; text-align: right;
overflow: hidden; overflow: hidden;
@ -888,11 +958,11 @@ export default {
font-size: 14px; font-size: 14px;
color: #fff; color: #fff;
white-space: nowrap; white-space: nowrap;
background-color: #52C41A; background-color: #52c41a;
border-radius: 4px; border-radius: 4px;
@include ellipsis(); @include ellipsis();
&.wait { &.wait {
background-color: #FAAD14; background-color: #faad14;
} }
&.signing { &.signing {
@ -900,7 +970,7 @@ export default {
} }
&.signed { &.signed {
background-color: #52C41A; background-color: #52c41a;
} }
&.playing { &.playing {
background-color: #f96d6d; background-color: #f96d6d;
@ -919,7 +989,7 @@ export default {
cursor: pointer; cursor: pointer;
&:hover { &:hover {
opacity: .9; opacity: 0.9;
} }
&.disabled { &.disabled {
@ -930,7 +1000,7 @@ export default {
.end-text { .end-text {
margin-top: 10px; margin-top: 10px;
color: rgba(0, 0, 0, .65); color: rgba(0, 0, 0, 0.65);
font-size: 12px; font-size: 12px;
white-space: nowrap; white-space: nowrap;
@ -978,7 +1048,7 @@ export default {
margin-bottom: 10px; margin-bottom: 10px;
font-size: 20px; font-size: 20px;
font-weight: 500; font-weight: 500;
color: #0B1D30; color: #0b1d30;
line-height: 1; line-height: 1;
} }
.metas { .metas {
@ -994,7 +1064,8 @@ export default {
} }
} }
.label, .val { .label,
.val {
font-size: 14px; font-size: 14px;
color: #666; color: #666;
white-space: nowrap; white-space: nowrap;

@ -684,7 +684,6 @@ export default {
this.active = 4 this.active = 4
const el = document.getElementById('comment' + this.commentId) const el = document.getElementById('comment' + this.commentId)
el && el.scrollIntoView(false) el && el.scrollIntoView(false)
await this.$post(`${this.api.noticeRead}?isRead=1&notifyId=${this.notifyId}`) //
this.commentId = '' this.commentId = ''
} }
}) })
@ -951,6 +950,7 @@ export default {
util.cookies.set('curriculumName', escape(this.curriculumName)) util.cookies.set('curriculumName', escape(this.curriculumName))
util.cookies.set('systemId', id) util.cookies.set('systemId', id)
util.cookies.set('mallId', this.mallId) util.cookies.set('mallId', this.mallId)
util.cookies.set('isSubmit', '', -1)
util.cookies.set('fromManager', '', -1) util.cookies.set('fromManager', '', -1)
util.cookies.set('competitionId', '', -1) util.cookies.set('competitionId', '', -1)
// 8pythoncookiesystemId // 8pythoncookiesystemId

Loading…
Cancel
Save