openf12
yujialong 2 years ago
parent 91342b1d71
commit ac2f86b339
  1. 3
      src/components/TestPanel.vue
  2. 95
      src/views/Home.vue

@ -56,7 +56,7 @@
<p>实验目标</p> <p>实验目标</p>
</div> </div>
<div class="goal"> <div class="goal">
<div class="break-all" v-html="experimentTarget"></div> <div class="ql-editor" v-html="experimentTarget"></div>
</div> </div>
</div> </div>
<div class="aside-footer"> <div class="aside-footer">
@ -898,7 +898,6 @@ export default {
.goal { .goal {
padding: 10px 0; padding: 10px 0;
margin: 0 10px; margin: 0 10px;
text-indent: 2em;
font-size: 14px; font-size: 14px;
} }
/deep/.select { /deep/.select {

@ -1,35 +1,50 @@
<template> <template>
<div v-show="loaded"> <div v-show="loaded">
<div class="header" :class="{hh: $config.isHh}"> <div class="header"
<img v-if="$config.isHh" src="@/assets/images/logo-hh.png" alt="" class="logo"> :class="{hh: $config.isHh}">
<img v-if="$config.isHh"
src="@/assets/images/logo-hh.png"
alt=""
class="logo">
<p v-else>{{curriculumName}}</p> <p v-else>{{curriculumName}}</p>
<el-button class="back btn" type="primary" @click="back">退出实验</el-button> <el-button class="back btn"
type="primary"
@click="back">退出实验</el-button>
</div> </div>
<div class="top"> <div class="top">
<div class="language"> <div class="language">
<p v-if="$config.isHh" style="font-size: 18px">{{$config.title}}</p> <p v-if="$config.isHh"
style="font-size: 18px">{{$config.title}}</p>
<p>编程语言</p> <p>编程语言</p>
<el-input placeholder="请输入内容" v-model="language" :disabled="true"></el-input> <el-input placeholder="请输入内容"
v-model="language"
:disabled="true"></el-input>
</div> </div>
<div class="inline-center"> <div class="inline-center">
<el-tooltip class="item" effect="dark" content="支持导入其它数据用于实验,总上传的文件大小不可以超过10M" placement="bottom"> <el-tooltip class="item"
<i class="info el-icon-warning" style="margin-right: 10px"></i> effect="dark"
content="支持导入其它数据用于实验,总上传的文件大小不可以超过10M"
placement="bottom">
<i class="info el-icon-warning"
style="margin-right: 10px"></i>
</el-tooltip> </el-tooltip>
<el-button type="primary" size="small" icon="el-icon-document" @click="toData">我的数据</el-button> <el-button type="primary"
size="small"
icon="el-icon-document"
@click="toData">我的数据</el-button>
</div> </div>
</div> </div>
<div class="tab"> <div class="tab">
<el-tabs v-model="curTab" type="card" @tab-click="judChange"> <el-tabs v-model="curTab"
<el-tab-pane type="card"
v-for="(item, i) in workbench" @tab-click="judChange">
<el-tab-pane v-for="(item, i) in workbench"
:key="item.judgmentId" :key="item.judgmentId"
:label="item.name" :label="item.name"
:value="item.judgmentId" :value="item.judgmentId">
> <codemirror :ref="'code' + i"
<codemirror
:ref="'code' + i"
:key="codeKey" :key="codeKey"
:projectId.sync="projectId" :projectId.sync="projectId"
:systemId.sync="systemId" :systemId.sync="systemId"
@ -39,19 +54,16 @@
:answer.sync="item.answer" :answer.sync="item.answer"
:retResult.sync="item.retResult" :retResult.sync="item.retResult"
:modelIsShow.sync="modelIsShow" :modelIsShow.sync="modelIsShow"
@cache="leavePage" @cache="leavePage"></codemirror>
></codemirror>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
<div class="menu"> <div class="menu">
<testPanel <testPanel @tell="setPoints"
@tell="setPoints"
@recoveryCode="recoveryCode" @recoveryCode="recoveryCode"
ref="mainindex" ref="mainindex"
:workbench.sync="workbench" :workbench.sync="workbench"></testPanel>
></testPanel>
</div> </div>
</div> </div>
</template> </template>
@ -62,7 +74,7 @@ import codemirror from "../components/codemirror";
import Cookie from 'js-cookie' import Cookie from 'js-cookie'
import { Loading } from 'element-ui' import { Loading } from 'element-ui'
export default { export default {
data() { data () {
return { return {
loaded: false, // loaded: false, //
loadIns: null, // loading loadIns: null, // loading
@ -71,6 +83,7 @@ export default {
courseId: Cookie.get('admin-courseId'), // id courseId: Cookie.get('admin-courseId'), // id
curriculumName: Cookie.get('admin-curriculumName') ? unescape(Cookie.get('admin-curriculumName')) : 'python', // curriculumName: Cookie.get('admin-curriculumName') ? unescape(Cookie.get('admin-curriculumName')) : 'python', //
assessmentId: Cookie.get('admin-assessmentId'), // id assessmentId: Cookie.get('admin-assessmentId'), // id
mallId: Cookie.get('admin-mallId'),
projectId: '', projectId: '',
systemId: '', systemId: '',
modelIsShow: false, // modelIsShow: false, //
@ -85,7 +98,7 @@ export default {
codemirror, codemirror,
testPanel testPanel
}, },
mounted() { mounted () {
this.loadIns = Loading.service({ this.loadIns = Loading.service({
background: 'rgba(255, 255, 255, .1)' background: 'rgba(255, 255, 255, .1)'
}) })
@ -95,12 +108,12 @@ export default {
this.leavePage() this.leavePage()
} }
}, },
beforeRouteLeave(to, from, next) { beforeRouteLeave (to, from, next) {
next(this.leavePage()) next(this.leavePage())
}, },
methods: { methods: {
// //
leavePage() { leavePage () {
const list = this.workbench const list = this.workbench
// //
if (!this.$refs.mainindex.isSubmit && list.length) { if (!this.$refs.mainindex.isSubmit && list.length) {
@ -119,7 +132,7 @@ export default {
cid: this.courseId, cid: this.courseId,
projectId: this.projectId projectId: this.projectId
} }
this.$post(this.api.saveCache,data).then(res => {}).catch(e => {}) this.$post(this.api.saveCache, data).then(res => { }).catch(e => { })
} }
}) })
} else { } else {
@ -129,17 +142,17 @@ export default {
} }
}, },
// //
getModelStatus(systemId) { getModelStatus (systemId) {
this.$post(`${this.api.checkIsShowBySystemId}?systemId=${systemId}`).then(res => { this.$post(`${this.api.checkIsShowBySystemId}?systemId=${systemId}`).then(res => {
this.modelIsShow = !res.isShow // 0 1 this.modelIsShow = !res.isShow // 0 1
}).catch(res => {}) }).catch(res => { })
}, },
// //
toData() { toData () {
this.$router.push('/data') this.$router.push('/data')
}, },
// 退 // 退
autoLogout() { autoLogout () {
let lastTime = new Date().getTime() let lastTime = new Date().getTime()
let logout = false let logout = false
// //
@ -148,15 +161,15 @@ export default {
} }
// 退 // 退
setInterval(() => { setInterval(() => {
if((new Date().getTime() - lastTime) > this.$config.autoLogoutTime){ if ((new Date().getTime() - lastTime) > this.$config.autoLogoutTime) {
logout || this.$message.error('用户登录过期,请重新登录') logout || this.$message.error('用户登录过期,请重新登录')
logout = true logout = true
setTimeout(this.back,1500) setTimeout(this.back, 1500)
} }
},1000) }, 1000)
}, },
// //
judChange() { judChange () {
this.$nextTick(_ => { this.$nextTick(_ => {
const code = this.$refs['code' + this.curTab][0].$refs.codemirror.codemirror // codemirror const code = this.$refs['code' + this.curTab][0].$refs.codemirror.codemirror // codemirror
code.focus() // code.focus() //
@ -164,12 +177,12 @@ export default {
}) })
}, },
// //
recoveryCode(curTab = '0') { recoveryCode (curTab = '0') {
this.curTab = curTab this.curTab = curTab
this.codeKey++ this.codeKey++
}, },
// 退 // 退
back() { back () {
let href = this.$config.isDev ? let href = this.$config.isDev ?
`http://${location.hostname}:8082/#/` : `http://${location.hostname}:8082/#/` :
`${location.origin}${this.fromManager ? `${location.origin}${this.fromManager ?
@ -185,12 +198,12 @@ export default {
href += `match/list` href += `match/list`
} else { } else {
// //
href += `station/preview?courseId=${this.courseId}&curriculumName=${this.curriculumName}` href += `station/preview?courseId=${this.courseId}&curriculumName=${this.curriculumName}&mallId=${this.mallId}`
} }
location.href = href location.href = href
}, },
// id // id
setPoints(projectId, systemId, workbench) { setPoints (projectId, systemId, workbench) {
this.projectId = projectId this.projectId = projectId
this.systemId = systemId this.systemId = systemId
this.workbench = workbench this.workbench = workbench
@ -209,7 +222,7 @@ export default {
height: 58px; height: 58px;
line-height: 58px; line-height: 58px;
background-color: #f8f8f8; background-color: #f8f8f8;
&.hh{ &.hh {
padding: 10px 0; padding: 10px 0;
line-height: normal; line-height: normal;
} }
@ -218,7 +231,7 @@ export default {
font-size: 20px; font-size: 20px;
color: rgba(51, 51, 51, 1); color: rgba(51, 51, 51, 1);
} }
.logo{ .logo {
width: 200px; width: 200px;
margin-left: 10px; margin-left: 10px;
} }
@ -287,7 +300,7 @@ export default {
color: #bfbfbf; color: #bfbfbf;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
opacity: .9; opacity: 0.9;
} }
} }
</style> </style>
Loading…
Cancel
Save