添加websocket(赛事、创业)

alioss
yujialong 2 years ago
parent 48ec1e6c3b
commit 9fcff50232
  1. 1
      src/api/index.js
  2. 63
      src/layouts/header/index.vue
  3. 27
      src/pages/activity/list/index.vue
  4. 37
      src/pages/activity/manage/list/index.vue
  5. 948
      src/pages/ass/list/index.vue
  6. 5
      src/pages/match/details/index.vue
  7. 1559
      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`,
getUserRolesPermissionMenu: `${host}users/users/user-role/getUserRolesPermissionMenu`,
fileUploadNakadai: `${host}nakadai/nakadai/oss/fileUpload`,
refreshPageNotification : `nakadai/message/refreshPageNotification`,
platformLogList: `nakadai/nakadai/log/platformLogList`,
logNotification: `nakadai/nakadai/log/logNotification`,

@ -71,6 +71,7 @@ import Setting from "@/setting";
import util from "@/libs/util";
import navbar from "../navbar";
import axios from 'axios'
import Bus from '@/libs/bus'
export default {
data () {
return {
@ -97,7 +98,6 @@ export default {
this.getUserInfo();
this.getNotice()
}
this.$once('hook:beforeDestroy', function () {
clearInterval(this.noticeTimer)
})
@ -118,25 +118,66 @@ export default {
}
}).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 () {
if (!Setting.isDev) {
this.noticeTimer = setInterval(() => {
this.$get(this.api.messageNotificationList, {
type: 2
}).then(res => {
this.notices = res.notificationList
}).catch(res => { });
}, 5000)
}
this.$get(this.api.messageNotificationList, {
type: 2
}).then(res => {
this.notices = res.notificationList
}).catch(res => { });
},
//
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}`)
},
//
getUserInfo () {
this.$get(this.api.queryUserInfoDetails).then(res => {
this.initSocket(res.result.userAccount)
const { userAvatars, userName, userId } = res.result.hrUserInfo || {}
userAvatars && this.setAvatar(userAvatars);
this.setUserId(userId)

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

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

@ -1,140 +1,201 @@
<template>
<!-- 考核列表 -->
<div class="wrap">
<div class="page" style="padding-bottom: 0;margin-bottom: 12px">
<h6 class="l-title">
<img src="@/assets/img/ass1.png" alt="">
考核筛选
</h6>
<ul class="filter">
<li>
<label>考核时间</label>
<el-radio-group size="small" v-model="form.month">
<el-radio v-for="(item,index) in dateList" :key="index" :label="item.id" border>
{{ item.name }}
</el-radio>
</el-radio-group>
<el-date-picker
size="small"
v-model="date"
align="right"
unlink-panels type="daterange"
start-placeholder="开始日期"
end-placeholder="结束日期"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
clearable
style="width: 300px"
></el-date-picker>
</li>
</ul>
<ul class="filter">
<li>
<label>课程名称</label>
<el-select size="small" v-model="form.curriculumId" @change="initData">
<el-option label="不限" value=""></el-option>
<el-option
v-for="(item,index) in courseList"
:key="index"
:label="item.sysName"
:value="item.sysId"
></el-option>
</el-select>
</li>
<li>
<label>实验班级</label>
<el-select size="small" v-model="form.classId" @change="initData">
<el-option label="不限" value=""></el-option>
<el-option
v-for="(item,index) in classList"
:key="index"
:label="item.className"
:value="item.id"
></el-option>
</el-select>
</li>
<li>
<label>实验状态</label>
<el-select size="small" v-model="form.status" @change="initData">
<el-option
v-for="(item,index) in statusList"
:key="index" :label="item.name"
:value="item.value"
></el-option>
</el-select>
</li>
<li>
<label>搜索</label>
<el-input placeholder="请输入考核名称" v-model="form.keyWord" clearable></el-input>
</li>
</ul>
</div>
<div class="page">
<el-table v-loading="listLoading" :data="listData" class="table" stripe header-align="center">
<el-table-column type="index" width="60" label="序号" align="center">
<template slot-scope="scope">
{{ scope.$index + (page - 1) * pageSize + 1 }}
</template>
</el-table-column>
<el-table-column prop="sysName" label="课程名称" align="center" show-overflow-tooltip></el-table-column>
<el-table-column prop="experimentalName" label="考核名称" align="center" show-overflow-tooltip></el-table-column>
<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">
<span>{{ timeFilter(scope.row) }}</span>
</template>
</el-table-column>
<el-table-column label="考核状态" width="90" align="center">
<template slot-scope="scope">
<span class="ellipsis">{{ status[scope.row.status] }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="实验状态" align="center">-->
<!-- <template slot-scope="scope" v-if="scope.row.show">-->
<!-- <span class="ellipsis">{{ stuState[scope.row.stuState] }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column width="100" label="操作" align="center">
<template slot-scope="scope">
<!--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 == 1) || (scope.row.status == 2 && scope.row.stuState == 2 && scope.row.reportId == null)" type="text" disabled>
未提交
</el-button>
<el-button v-if="scope.row.status != 2 && (scope.row.stuState == 0 || scope.row.stuState == 1)" type="text"
@click="entry(scope.row)" :disabled="scope.row.status !== 1">进入
</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 == 2 && scope.row.stuState == 2 && scope.row.reportId" type="text"
@click="show(scope.row)">查看成绩
</el-button>
</template>
</el-table-column>
</el-table>
<div class="pagination">
<el-pagination
background
layout="total, prev, pager, next"
:total="totals"
@current-change="handleCurrentChange"
:current-page="page"
></el-pagination>
</div>
</div>
<el-dialog title="请输入邀请码" :visible.sync="icVisible" width="30%" @close="closeIc" center
:close-on-click-modal="false">
<el-input v-model="invitationCode" placeholder="邀请码" maxlength="6"></el-input>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="saveIc"> </el-button>
</div>
</el-dialog>
<!-- 考核列表 -->
<div class="wrap">
<div class="page"
style="padding-bottom: 0;margin-bottom: 12px">
<h6 class="l-title">
<img src="@/assets/img/ass1.png"
alt="">
考核筛选
</h6>
<ul class="filter">
<li>
<label>考核时间</label>
<el-radio-group size="small"
v-model="form.month">
<el-radio v-for="(item,index) in dateList"
:key="index"
:label="item.id"
border>
{{ item.name }}
</el-radio>
</el-radio-group>
<el-date-picker size="small"
v-model="date"
align="right"
unlink-panels
type="daterange"
start-placeholder="开始日期"
end-placeholder="结束日期"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
clearable
style="width: 300px"></el-date-picker>
</li>
</ul>
<ul class="filter">
<li>
<label>课程名称</label>
<el-select size="small"
v-model="form.curriculumId"
@change="initData">
<el-option label="不限"
value=""></el-option>
<el-option v-for="(item,index) in courseList"
:key="index"
:label="item.sysName"
:value="item.sysId"></el-option>
</el-select>
</li>
<li>
<label>实验班级</label>
<el-select size="small"
v-model="form.classId"
@change="initData">
<el-option label="不限"
value=""></el-option>
<el-option v-for="(item,index) in classList"
:key="index"
:label="item.className"
:value="item.id"></el-option>
</el-select>
</li>
<li>
<label>实验状态</label>
<el-select size="small"
v-model="form.status"
@change="initData">
<el-option v-for="(item,index) in statusList"
:key="index"
:label="item.name"
:value="item.value"></el-option>
</el-select>
</li>
<li>
<label>搜索</label>
<el-input placeholder="请输入考核名称"
v-model="form.keyWord"
clearable></el-input>
</li>
</ul>
</div>
<div class="page">
<el-table v-loading="listLoading"
:data="listData"
class="table"
stripe
header-align="center">
<el-table-column type="index"
width="60"
label="序号"
align="center">
<template slot-scope="scope">
{{ scope.$index + (page - 1) * pageSize + 1 }}
</template>
</el-table-column>
<el-table-column prop="sysName"
label="课程名称"
align="center"
show-overflow-tooltip></el-table-column>
<el-table-column prop="experimentalName"
label="考核名称"
align="center"
show-overflow-tooltip></el-table-column>
<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">
<span>{{ timeFilter(scope.row) }}</span>
</template>
</el-table-column>
<el-table-column label="考核状态"
width="90"
align="center">
<template slot-scope="scope">
<span class="ellipsis">{{ status[scope.row.status] }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="实验状态" align="center">-->
<!-- <template slot-scope="scope" v-if="scope.row.show">-->
<!-- <span class="ellipsis">{{ stuState[scope.row.stuState] }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column width="100"
label="操作"
align="center">
<template slot-scope="scope">
<!--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 == 1) || (scope.row.status == 2 && scope.row.stuState == 2 && scope.row.reportId == null)"
type="text"
disabled>
未提交
</el-button>
<el-button v-if="scope.row.status != 2 && (scope.row.stuState == 0 || scope.row.stuState == 1)"
type="text"
@click="entry(scope.row)"
:disabled="scope.row.status !== 1">进入
</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 == 2 && scope.row.stuState == 2 && scope.row.reportId"
type="text"
@click="show(scope.row)">查看成绩
</el-button>
</template>
</el-table-column>
</el-table>
<div class="pagination">
<el-pagination background
layout="total, prev, pager, next"
:total="totals"
@current-change="handleCurrentChange"
:current-page="page"></el-pagination>
</div>
</div>
<el-dialog title="请输入邀请码"
:visible.sync="icVisible"
width="30%"
@close="closeIc"
center
:close-on-click-modal="false">
<el-input v-model="invitationCode"
placeholder="邀请码"
maxlength="6"></el-input>
<div slot="footer"
class="dialog-footer">
<el-button type="primary"
@click="saveIc"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
@ -143,325 +204,326 @@ import Setting from "@/setting";
import util from "@/libs/util";
export default {
name: "ass",
data() {
return {
tickerArr: [],
classList: [],
courseList: [],
host: Setting.apiBaseURL,
status: ["待开始", "进行中", "已结束"],
statusList: [{
name: "不限",
value: ""
}, {
name: "待开始",
value: 0
}, {
name: "进行中",
value: 1
}, {
name: "已结束",
value: 2
}],
stuState: ["未考", "在考", "已考"],
listData: [],
date: [],
form: {
keyWord: '',
month: "",
startTime: "",
endTime: "",
status: "",
curriculumId: "",
classId: ""
},
dateList: [
{
id: "",
name: "不限"
},
{
id: 1,
name: "近一个月"
},
{
id: 3,
name: "近三个月"
},
{
id: 6,
name: "近六个月"
}
],
page: 1,
pageSize: 10,
totals: 0,
listLoading:false,//
icVisible: false,
invitationCode: "",
searchTimer: null,
curRow: {},
ticker: null, //
item:{
},
projectId:null,
url:'',
cid:null,
systemId:null,
assessmentId:'',
classId:'',
stopTime:'',
sss:1,
datassdata:0,
};
},
computed: {
...mapState("user", [
"userId", "schoolId", "studentId", "userName"
])
},
watch: {
"form.month": function(val) {
if (val) {
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))];
} else {
this.date = [];
}
name: "ass",
data () {
return {
tickerArr: [],
classList: [],
courseList: [],
host: Setting.apiBaseURL,
status: ["待开始", "进行中", "已结束"],
statusList: [{
name: "不限",
value: ""
}, {
name: "待开始",
value: 0
}, {
name: "进行中",
value: 1
}, {
name: "已结束",
value: 2
}],
stuState: ["未考", "在考", "已考"],
listData: [],
date: [],
form: {
keyWord: '',
month: "",
startTime: "",
endTime: "",
status: "",
curriculumId: "",
classId: ""
},
dateList: [
{
id: "",
name: "不限"
},
date: function(val) {
if (val) {
this.form.startTime = val[0];
this.form.endTime = val[1];
} else {
this.form.startTime = "";
this.form.endTime = "";
}
this.initData();
{
id: 1,
name: "近一个月"
},
{
id: 3,
name: "近三个月"
},
'form.keyWord': function(val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
}, 500);
{
id: 6,
name: "近六个月"
}
],
page: 1,
pageSize: 10,
totals: 0,
listLoading: false,//
icVisible: false,
invitationCode: "",
searchTimer: null,
curRow: {},
ticker: null, //
item: {
},
projectId: null,
url: '',
cid: null,
systemId: null,
assessmentId: '',
classId: '',
stopTime: '',
sss: 1,
datassdata: 0,
};
},
computed: {
...mapState("user", [
"userId", "schoolId", "studentId", "userName"
])
},
watch: {
"form.month": function (val) {
if (val) {
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))];
} else {
this.date = [];
}
},
mounted() {
//
this.$once("hook:beforeDestroy", function() {
this.sss = 0
clearInterval(this.ticker);
this.ticker = null;
});
this.getData();
this.getCourseData();
this.getClassData();
date: function (val) {
if (val) {
this.form.startTime = val[0];
this.form.endTime = val[1];
} else {
this.form.startTime = "";
this.form.endTime = "";
}
this.initData();
},
methods: {
timeFilter(countDown) {
if (countDown.countDown > 0) {
let h = Math.floor(countDown.countDown / (60 * 60));
let m = 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}`}`;
} else {
if (countDown.status == 1){
this.$post(`${this.api.collectPaper}?id=${countDown.assessmentId}`).then(res => {
})
}else{
}
return "00:00:00";
}
},
beginTimer() {
this.ticker = setInterval(() => {
if(this.sss == 0){
this.ticker = null;
clearInterval(this.ticker);
}else{
for (let i = 0; i < this.listData.length; i++) {
const item = this.listData[i];
if (item.countDown > 0) {
item.countDown--;
} else {
if (item.status == 0 && item.type == 2) { // -
item.status = 1;
item.countDown = (new Date(item.stopTime).getTime() - new Date().getTime()) / 1000;
} else if (item.status == 1) {
// item.status = 2;
}
}
item.show = true;
this.$set(this.listData, i, item);
}
'form.keyWord': function (val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
}, 500);
}
},
mounted () {
//
this.$once("hook:beforeDestroy", function () {
this.sss = 0
clearInterval(this.ticker);
this.ticker = null;
});
this.getData();
this.getCourseData();
this.getClassData();
},
methods: {
timeFilter (countDown) {
if (countDown.countDown > 0) {
let h = Math.floor(countDown.countDown / (60 * 60));
let m = 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}`}`;
} else {
if (countDown.status == 1) {
this.$post(`${this.api.collectPaper}?id=${countDown.assessmentId}`).then(res => {
})
} else {
}
}, 1000);
},
getData() {
this.listLoading = true;
this.sss = 0
this.listData.splice(0);
if (this.ticker) {
clearInterval(this.ticker);
}
let data = {
...this.form,
pageNum: this.page,
pageSize: this.pageSize
};
this.$post(this.api.pageStuAssessment, data).then(res => {
this.listData = res.list;
for (var i=0;i<this.listData.length;i++){
if (this.listData[i].reportId == undefined){
this.listData[i].reportId = null
}
}
this.totals = res.total;
this.listData.forEach(i => {
i.show = false;
if (i.status == 2) { //
i.countDown = 0;
} else {
if (i.type == 2) { //
if (i.status == 0) {
//
i.countDown = (new Date(i.startTime).getTime() - new Date().getTime()) / 1000; //
} else if (i.status == 1) {
//
i.countDown = (new Date(i.stopTime).getTime() - new Date().getTime()) / 1000;
}
} else if (i.type == 1) { //
if (i.status == 0) {
//
i.countDown = 0;
} else if (i.status == 1) {
//
i.countDown = (new Date(i.stopTime).getTime() - new Date().getTime()) / 1000;
}
}
}
});
this.sss = 1;
// if(this.datassdata == 0){
// this.datassdata = this.datassdata+1
this.beginTimer()
// }
this.listLoading = false;
}).catch(err => {
this.listLoading = false;
});
},
initData() {
this.sss = 0
this.page = 1;
this.getData();
},
getCourseData() {
this.$get(this.api.getPythonSysByStuAccountId).then(res => {
this.courseList = res.list;
}).catch(err => {
});
},
getClassData() {
this.$post(this.api.myClassByStudent).then(({ data }) => {
this.classList = data.filter(e => e)
}).catch(err => {
});
},
handleCurrentChange(val) { //
this.page = val;
this.sss = 0
this.getData();
},
entry(row) { //
this.item = row
this.assessmentId =this.item.assessmentId
this.classId = this.item.classId
if (row.status == 0) {
return util.warningMsg("该实验尚未开始");
} else if (row.status == 2) {
return util.warningMsg("该实验已经结束");
}
return "00:00:00";
}
},
beginTimer () {
this.ticker = setInterval(() => {
if (this.sss == 0) {
this.ticker = null;
clearInterval(this.ticker);
} else {
for (let i = 0; i < this.listData.length; i++) {
const item = this.listData[i];
if (item.countDown > 0) {
item.countDown--;
} else {
this.curRow = row;
if (row.isEnableCode == 0) { // (0 1)
this.$post(`${this.api.enterExam}?assessmentId=${row.assessmentId}&classId=${row.classId}`).then(res => {
this.curRow.curriculumId = res.info.systemId
this.projectId = res.projectId
this.url = res.url
this.cid = res.info.cid
this.systemId = res.info.systemId
var date = res.assessmentInfo.stopTime;
date = date.substring(0,19);
date = date.replace(/-/g,'/');
this.stopTime = new Date(date).getTime();
this.goSubSystem();
}).catch(res => {
});
} else {
this.icVisible = true
}
if (item.status == 0 && item.type == 2) { // -
item.status = 1;
item.countDown = (new Date(item.stopTime).getTime() - new Date().getTime()) / 1000;
} else if (item.status == 1) {
// item.status = 2;
}
}
},
show(row) { //
this.$router.push(`/record/show?reportId=${row.reportId}`);
},
saveIc() {
if (!this.invitationCode) return util.warningMsg("请输入邀请码");
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 => {
util.successMsg("验证成功!");
this.icVisible = false;
this.projectId = res.projectId
this.url = res.url
this.cid = res.info.cid
this.systemId = res.info.systemId
setTimeout(() => {
this.goSubSystem();
}, 1000);
}).catch(res => {
});
},
closeIc() {
this.invitationCode = "";
},
goSubSystem() {
let token = util.local.get(Setting.tokenKey)
const classId = this.classId
const classItem = this.classList.find(e => e.id == classId)
let curriculumId = this.curRow.curriculumId
util.cookies.set("token", token)
util.cookies.set("assessmentId", this.assessmentId)
util.cookies.set("classId", classId)
util.cookies.set("className", classItem ? encodeURI(classItem.className) : '')
util.cookies.set("projectId", this.projectId)
util.cookies.set("courseId", this.cid)
util.cookies.set("curriculumName", escape(this.curRow.sysName));
util.cookies.set("startTime", this.curRow.startTime)
util.cookies.set("stopTime", this.curRow.stopTime)
util.cookies.set("systemId", this.systemId);
util.cookies.set('fromManager', '', -1)
util.cookies.set('competitionId', '', -1)
let href = ''
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}`;
} 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}`);
} else {
if(process.env.NODE_ENV === 'development') {
href = 'http://192.168.31.125:8085/#/'
} else {
href = `${location.origin}/pyTrials` // 8pythoncookiesystemId
}
item.show = true;
this.$set(this.listData, i, item);
}
}
}, 1000);
},
getData () {
this.listLoading = true;
this.sss = 0
this.listData.splice(0);
if (this.ticker) {
clearInterval(this.ticker);
}
let data = {
...this.form,
pageNum: this.page,
pageSize: this.pageSize
};
this.$post(this.api.pageStuAssessment, data).then(res => {
this.listData = res.list;
for (var i = 0; i < this.listData.length; i++) {
if (this.listData[i].reportId == undefined) {
this.listData[i].reportId = null
}
}
this.totals = res.total;
this.listData.forEach(i => {
i.show = false;
if (i.status == 2) { //
i.countDown = 0;
} else {
if (i.type == 2) { //
if (i.status == 0) {
//
i.countDown = (new Date(i.startTime).getTime() - new Date().getTime()) / 1000; //
} else if (i.status == 1) {
//
i.countDown = (new Date(i.stopTime).getTime() - new Date().getTime()) / 1000;
}
} else if (i.type == 1) { //
if (i.status == 0) {
//
i.countDown = 0;
} else if (i.status == 1) {
//
i.countDown = (new Date(i.stopTime).getTime() - new Date().getTime()) / 1000;
}
}
if (!href) return util.errorMsg("该考核非Python考核,请选择其他考核");
location.href = href;
}
});
this.sss = 1;
// if(this.datassdata == 0){
// this.datassdata = this.datassdata+1
this.beginTimer()
// }
this.listLoading = false;
}).catch(err => {
this.listLoading = false;
});
},
initData () {
this.sss = 0
this.page = 1;
this.getData();
},
getCourseData () {
this.$get(this.api.getPythonSysByStuAccountId).then(res => {
this.courseList = res.list;
}).catch(err => {
});
},
getClassData () {
this.$post(this.api.myClassByStudent).then(({ data }) => {
this.classList = data.filter(e => e)
}).catch(err => {
});
},
handleCurrentChange (val) { //
this.page = val;
this.sss = 0
this.getData();
},
entry (row) { //
this.item = row
this.assessmentId = this.item.assessmentId
this.classId = this.item.classId
if (row.status == 0) {
return util.warningMsg("该实验尚未开始");
} else if (row.status == 2) {
return util.warningMsg("该实验已经结束");
} else {
this.curRow = row;
if (row.isEnableCode == 0) { // (0 1)
this.$post(`${this.api.enterExam}?assessmentId=${row.assessmentId}&classId=${row.classId}`).then(res => {
this.curRow.curriculumId = res.info.systemId
this.projectId = res.projectId
this.url = res.url
this.cid = res.info.cid
this.systemId = res.info.systemId
var date = res.assessmentInfo.stopTime;
date = date.substring(0, 19);
date = date.replace(/-/g, '/');
this.stopTime = new Date(date).getTime();
this.goSubSystem();
}).catch(res => {
});
} else {
this.icVisible = true
}
}
},
show (row) { //
this.$router.push(`/record/show?reportId=${row.reportId}`);
},
saveIc () {
if (!this.invitationCode) return util.warningMsg("请输入邀请码");
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 => {
util.successMsg("验证成功!");
this.icVisible = false;
this.projectId = res.projectId
this.url = res.url
this.cid = res.info.cid
this.systemId = res.info.systemId
setTimeout(() => {
this.goSubSystem();
}, 1000);
}).catch(res => {
});
},
closeIc () {
this.invitationCode = "";
},
goSubSystem () {
let token = util.local.get(Setting.tokenKey)
const classId = this.classId
const classItem = this.classList.find(e => e.id == classId)
let curriculumId = this.curRow.curriculumId
util.cookies.set("token", token)
util.cookies.set("assessmentId", this.assessmentId)
util.cookies.set("classId", classId)
util.cookies.set("className", classItem ? encodeURI(classItem.className) : '')
util.cookies.set("projectId", this.projectId)
util.cookies.set("courseId", this.cid)
util.cookies.set("curriculumName", escape(this.curRow.sysName));
util.cookies.set("startTime", this.curRow.startTime)
util.cookies.set("stopTime", this.curRow.stopTime)
util.cookies.set("systemId", this.systemId);
util.cookies.set('fromManager', '', -1)
util.cookies.set('competitionId', '', -1)
util.cookies.set('isSubmit', '', -1)
let href = ''
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}`;
} 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}`);
} else {
if (process.env.NODE_ENV === 'development') {
href = 'http://192.168.31.125:8085/#/'
} else {
href = `${location.origin}/pyTrials` // 8pythoncookiesystemId
}
}
if (!href) return util.errorMsg("该考核非Python考核,请选择其他考核");
location.href = href;
}
}
};
</script>

@ -1425,6 +1425,7 @@ export default {
util.cookies.set('courseId', form.cid)
util.cookies.set('curriculumName', escape(form.systemName))
util.cookies.set('systemId', form.systemId)
util.cookies.set('isSubmit', '', -1)
util.cookies.set('competitionId', this.form.id)
util.cookies.set('stageId', form.stageId)
util.cookies.set('teamId', this.form.competitionRegistration.teamId)
@ -1442,7 +1443,7 @@ export default {
//
toSub () {
const { form } = this
const { systemId, projectId, cid, stageId } = this.curStage
const { systemId, projectId, cid, stageId, endTime } = this.curStage
const competitionId = form.id
const teamId = form.competitionRegistration.teamId
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`
} 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 {
// python
this.toPython(this.curProject)

File diff suppressed because it is too large Load Diff

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

Loading…
Cancel
Save