|
|
|
@ -43,7 +43,7 @@ |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="catalog"> |
|
|
|
|
<a class="entry" @click="goSystem"></a> |
|
|
|
|
<a class="entry" @click="entry"></a> |
|
|
|
|
<div class="list"> |
|
|
|
|
<h4 class="title">{{ courseName }}</h4> |
|
|
|
|
<div class="chapters"> |
|
|
|
@ -78,6 +78,23 @@ |
|
|
|
|
</h6> |
|
|
|
|
<p class="intro">{{ teachingObjectives }}</p> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog title="请选择项目" :visible.sync="projectVisible" width="828px" custom-class="project-dia" :close-on-click-modal="false"> |
|
|
|
|
<div class="project"> |
|
|
|
|
<ul class="projects"> |
|
|
|
|
<li v-for="(item, i) in projects" :key="i" :class="{active: curProject == item.projectId}" @click="selectProject(item)"> |
|
|
|
|
<img src="@/assets/img/project.png" alt=""> |
|
|
|
|
<span>{{ item.projectName }}</span> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button size="small" @click="projectVisible = false">取 消</el-button> |
|
|
|
|
<el-button size="small" type="primary" @click="toSub">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -124,7 +141,11 @@ export default { |
|
|
|
|
currentPage: 0, // pdf文件页码 |
|
|
|
|
pageCount: 0, // pdf文件总页数 |
|
|
|
|
fileType: "pdf", // 文件类型 |
|
|
|
|
desShrink: false |
|
|
|
|
desShrink: false, |
|
|
|
|
projectVisible: false, |
|
|
|
|
projects: [], |
|
|
|
|
loading: false, |
|
|
|
|
curProject: '' |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
@ -278,35 +299,77 @@ export default { |
|
|
|
|
loadPdfHandler(e) { |
|
|
|
|
this.currentPage = 1; |
|
|
|
|
}, |
|
|
|
|
goSystem() { // 进入实验系统 |
|
|
|
|
// 选择项目 |
|
|
|
|
selectProject(item) { |
|
|
|
|
this.curProject = item.projectId |
|
|
|
|
}, |
|
|
|
|
queryProject() { |
|
|
|
|
this.projectVisible = true |
|
|
|
|
this.loading = true |
|
|
|
|
this.$get(this.api.getProjectBySystemId, { |
|
|
|
|
systemId: this.systemIds, |
|
|
|
|
cId: this.courseId, // 课程id |
|
|
|
|
permissions: 0 // 0: 练习,1: 考核 |
|
|
|
|
}).then(({ projects }) => { |
|
|
|
|
this.loading = false |
|
|
|
|
this.projects = projects |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}, |
|
|
|
|
// 进入实验 |
|
|
|
|
entry() { |
|
|
|
|
this.$get(this.api.getTheMostRecentlyRunProject).then(({ data }) => { |
|
|
|
|
if (data.length) { |
|
|
|
|
this.$confirm('是否要继续上次的实验?', '提示', { |
|
|
|
|
confirmButtonText: '是', |
|
|
|
|
cancelButtonText: '否', |
|
|
|
|
type: 'success' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.setParam(data[0].projectId) |
|
|
|
|
}).catch(() => { |
|
|
|
|
this.queryProject() |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
this.setParam(0) |
|
|
|
|
} |
|
|
|
|
}).catch(res => { |
|
|
|
|
this.queryProject() |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
setParam(projectId) { |
|
|
|
|
const id = this.systemIds |
|
|
|
|
let token = util.local.get(Setting.tokenKey); |
|
|
|
|
util.cookies.set("assessmentId", "", -1); |
|
|
|
|
util.cookies.set("startTime", "", -1); |
|
|
|
|
util.cookies.set("stopTime", "", -1); |
|
|
|
|
projectId ? util.cookies.set("projectId", projectId) : util.cookies.set("projectId", '', -1) |
|
|
|
|
util.cookies.set("token", token); |
|
|
|
|
util.cookies.set("courseId", this.courseId); |
|
|
|
|
util.cookies.set("curriculumName", escape(this.curriculumName)); |
|
|
|
|
util.cookies.set("systemId", id); |
|
|
|
|
// 8个python子系统都跳这个地址,子系统会通过cookie里的systemId识别展示哪套系统 |
|
|
|
|
location.href = process.env.NODE_ENV === 'development' ? |
|
|
|
|
`http://${location.hostname}:8080/#/` : |
|
|
|
|
Setting.isPro ? |
|
|
|
|
'https://www.occupationlab.com/pyTrials' : |
|
|
|
|
`${location.origin}/pyTrials` |
|
|
|
|
}, |
|
|
|
|
// 进入子系统 |
|
|
|
|
toSub() { |
|
|
|
|
const id = this.systemIds |
|
|
|
|
const systemId = this.projects.find(e => e.projectId == this.curProject).systemId |
|
|
|
|
let token = util.local.get(Setting.tokenKey); |
|
|
|
|
let roleId = this.roleId == 4 ? 0 : 1; |
|
|
|
|
let userName = window.btoa(encodeURIComponent(this.userName)); |
|
|
|
|
|
|
|
|
|
if (id == 11) { |
|
|
|
|
if (systemId == 11) { |
|
|
|
|
// 银行系统 |
|
|
|
|
location.href = `${Setting.systemPath}/#/index/list?token=${token}&cid=${this.courseId}&systemId=${this.assessmentList[0].systemId}&projectId=&assessmentId=&classId=&stopTime=&test=true` |
|
|
|
|
} else if (id == 21) { |
|
|
|
|
} else if (systemId == 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`); |
|
|
|
|
} else if (id == 22) { |
|
|
|
|
} else if (systemId == 22) { |
|
|
|
|
window.open(`https://danbao.czcyedu.com/#/loginFromYyyf?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=eb7d8355119d449184c548b07dc01ed9&caseId=1198241070647873538&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=faaedd82adb9444285a5785e4a3dd4f9`); |
|
|
|
|
} else { |
|
|
|
|
// python系统 |
|
|
|
|
util.cookies.set("assessmentId", "", -1); |
|
|
|
|
util.cookies.set("projectId", "", -1); |
|
|
|
|
util.cookies.set("startTime", "", -1); |
|
|
|
|
util.cookies.set("stopTime", "", -1); |
|
|
|
|
util.cookies.set("token", token); |
|
|
|
|
util.cookies.set("courseId", this.courseId); |
|
|
|
|
util.cookies.set("curriculumName", escape(this.curriculumName)); |
|
|
|
|
util.cookies.set("systemId", id); |
|
|
|
|
// 8个python子系统都跳这个地址,子系统会通过cookie里的systemId识别展示哪套系统 |
|
|
|
|
location.href = process.env.NODE_ENV === 'development' ? |
|
|
|
|
`http://${location.hostname}:8080/#/` : |
|
|
|
|
Setting.isPro ? |
|
|
|
|
'https://www.occupationlab.com/pyTrials' : |
|
|
|
|
`${location.origin}/pyTrials` |
|
|
|
|
this.setParam(this.curProject) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -547,6 +610,52 @@ $height: 700px; |
|
|
|
|
margin: 0 auto; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/deep/.project-dia { |
|
|
|
|
.el-dialog__body { |
|
|
|
|
padding: 28px 32px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.project { |
|
|
|
|
.title { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
} |
|
|
|
|
.projects { |
|
|
|
|
display: flex; |
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
li { |
|
|
|
|
display: inline-flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
width: 240px; |
|
|
|
|
padding: 16px 0; |
|
|
|
|
margin: 0 20px 20px 0; |
|
|
|
|
background-color: #F6F8FA; |
|
|
|
|
border-radius: 16px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
&:hover { |
|
|
|
|
span { |
|
|
|
|
color: #007EFF; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
&:nth-child(3n) { |
|
|
|
|
margin-right: 0; |
|
|
|
|
} |
|
|
|
|
&.active { |
|
|
|
|
background-color: #f2f7ff; |
|
|
|
|
span { |
|
|
|
|
color: #3988ff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
span { |
|
|
|
|
max-width: 140px; |
|
|
|
|
margin-left: 14px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (max-width: 1430px) { |
|
|
|
|
.wrap { |
|
|
|
|
padding: 12px 100px 20px; |
|
|
|
|