UI_2022-02-10
yujialong 3 years ago
parent 891e148a4e
commit e36b8aa9c0
  1. 16833
      package-lock.json
  2. 2
      src/api/index.js
  3. 78
      src/pages/ass/list/index.vue
  4. 4
      src/pages/station/preview/index.vue
  5. 3
      src/setting.js

16833
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -73,7 +73,7 @@ export default {
fileupload: `${uploadURL}oss/manage/fileupload`, // 文件上传 fileupload: `${uploadURL}oss/manage/fileupload`, // 文件上传
getPlayAuth: `${uploadURL}oss/manage/getPlayAuth`, // 获取播放凭证 getPlayAuth: `${uploadURL}oss/manage/getPlayAuth`, // 获取播放凭证
collectPaper: `${host}occupationlab/assessment/collectPaper`, //结束考核
queryProvince: `${host}nakadai/nakadai/province/queryProvince`, //查询省份 queryProvince: `${host}nakadai/nakadai/province/queryProvince`, //查询省份
queryCity: `${host}nakadai/nakadai/city/queryCity`, //查询城市 queryCity: `${host}nakadai/nakadai/city/queryCity`, //查询城市
querySchoolData: `${host}nakadai/nakadai/school/querySchool`, //根据学校名称查询学校信息 querySchoolData: `${host}nakadai/nakadai/school/querySchool`, //根据学校名称查询学校信息

@ -78,7 +78,7 @@
<el-table-column prop="stopTime" label="结束时间" align="center"></el-table-column> <el-table-column prop="stopTime" label="结束时间" align="center"></el-table-column>
<el-table-column label="倒计时" align="center"> <el-table-column label="倒计时" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.countDown | timeFilter }}</span> <span>{{ timeFilter(scope.row) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="考核状态" align="center"> <el-table-column label="考核状态" align="center">
@ -135,6 +135,7 @@ export default {
name: "ass", name: "ass",
data() { data() {
return { return {
tickerArr: [],
classList: [], classList: [],
courseList: [], courseList: [],
host: Setting.apiBaseURL, host: Setting.apiBaseURL,
@ -243,37 +244,67 @@ export default {
this.getCourseData(); this.getCourseData();
this.getClassData(); this.getClassData();
}, },
filters: { methods: {
timeFilter(countDown) { timeFilter(countDown) {
if (countDown > 0) { if (countDown.countDown > 0) {
let h = Math.floor(countDown / (60 * 60)); let h = Math.floor(countDown.countDown / (60 * 60));
let m = Math.floor(countDown % (60 * 60) / 60); let m = Math.floor(countDown.countDown % (60 * 60) / 60);
let s = Math.floor(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){
this.$post(`${this.api.collectPaper}?id=${countDown.assessmentId}`).then(res => {
console.log('tes')
console.log(res)
})
}else{
console.log('???')
}
return "00:00:00"; return "00:00:00";
} }
} },
}, // collectPaper(countDown){
methods: { // console.log(countDown)
// },
beginTimer() { beginTimer() {
this.ticker = setInterval(() => {
for (let i = 0; i < this.listData.length; i++) { for (let i = 0; i < this.listData.length; i++) {
const item = this.listData[i]; const ticker = setInterval(() => {
if (item.countDown > 0) { const item = this.listData[i];
item.countDown--; if (item.countDown > 0) {
} else { item.countDown--;
if (item.status == 0 && item.type == 2) { // - } else {
item.status = 1; if (item.status == 0 && item.type == 2) { // -
item.countDown = (new Date(item.stopTime).getTime() - new Date().getTime()) / 1000; item.status = 1;
} else if (item.status == 1) { item.countDown = (new Date(item.stopTime).getTime() - new Date().getTime()) / 1000;
// item.status = 2; } else if (item.status == 1) {
// item.status = 2;
}
} }
} item.show = true;
item.show = true; this.$set(this.listData, i, item);
this.$set(this.listData, i, item); }, 1000)
this.tickerArr.push(ticker)
} }
}, 1000);
// this.ticker = setInterval(() => {
// 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);
// }
// }, 1000);
}, },
getData() { getData() {
this.listLoading = true; this.listLoading = true;
@ -288,6 +319,7 @@ 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;
console.log(this.listData)
this.totals = res.total; this.totals = res.total;
this.listData.forEach(i => { this.listData.forEach(i => {
i.show = false; i.show = false;

@ -312,8 +312,8 @@ export default {
} else if (id == 11) { } else if (id == 11) {
// href = `${host}bank/#/`; // href = `${host}bank/#/`;
let token = util.local.get(Setting.tokenKey); let token = util.local.get(Setting.tokenKey);
href = "http://39.108.250.202/banksystem/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId; // href = "http://39.108.250.202/banksystem/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId;
// href = "http://192.168.31.254:8093/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId; href = "http://192.168.31.155:8093/#/index/list?"+'token='+token+'&cid='+this.courseId+'&systemId='+this.assessmentList[0].systemId;
} else if (id == 21) { } else if (id == 21) {
window.open(`http://121.37.29.24:80/yyyflogin?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=3989a0ad671849b99dcbdcc208782333&caseId=9681f86902314b10bc752909121f9ab9&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=7ff5d4715b114b7398b6f26c20fac460`); window.open(`http://121.37.29.24:80/yyyflogin?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=3989a0ad671849b99dcbdcc208782333&caseId=9681f86902314b10bc752909121f9ab9&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=7ff5d4715b114b7398b6f26c20fac460`);
} else if (id == 22) { } else if (id == 22) {

@ -42,8 +42,9 @@ if (isHh) {
title = "职站"; title = "职站";
} else if (isDev) { } else if (isDev) {
// 本地 // 本地
host = "http://39.108.250.202:9000/"; // 中台测试服 // host = "http://39.108.250.202:9000/"; // 中台测试服
// host = "http://192.168.31.137:9000/"; // 赓 // host = "http://192.168.31.137:9000/"; // 赓
host = "http://39.108.250.202:9000/";
// host = "http://192.168.31.151:9000/"; // 榕 // host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.125:9000/"; // 坤 // host = "http://192.168.31.125:9000/"; // 坤
systemPath = "http://192.168.31.154/"; systemPath = "http://192.168.31.154/";

Loading…
Cancel
Save