|
|
|
@ -34,120 +34,117 @@ |
|
|
|
|
</el-radio-group> |
|
|
|
|
|
|
|
|
|
<div class="inline-input"> |
|
|
|
|
<el-select v-model="libraryId" placeholder="请选择试卷库" @change="getProject"> |
|
|
|
|
<!-- 理论 && 选择课程 --> |
|
|
|
|
<el-select v-if="isTheory && !courseSystem" v-model="libraryId" placeholder="请选择试卷库" @change="getProject"> |
|
|
|
|
<el-option v-for="(item, i) in paperLibraries" :key="i" :label="item.libraryName" :value="item.libraryId"> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
|
|
<!-- 实训 && 选择课程 --> |
|
|
|
|
<el-cascader v-else-if="!isTheory && !courseSystem" ref="cur" v-model="mallIds" :options="curs" |
|
|
|
|
:props="{ checkStrictly: true, value: 'id' }" popper-class="course-cas" @expand-change="curChange" |
|
|
|
|
@change="curChange"></el-cascader> |
|
|
|
|
|
|
|
|
|
<!-- 实训 && 选择系统 --> |
|
|
|
|
<el-select v-else-if="!isTheory && courseSystem" v-model="systemId" placeholder="请选择系统" @change="getProject"> |
|
|
|
|
<el-option v-for="(item, i) in services" :key="i" :label="item.systemName" :value="item.systemId"> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
|
<!-- 理论系统 --> |
|
|
|
|
<template v-if="isTheory"> |
|
|
|
|
<el-card shadow="hover" class="m-b-20"> |
|
|
|
|
<div class="flex-between m-b-20"> |
|
|
|
|
<span>理论试卷</span> |
|
|
|
|
<div style="display: inline-flex;"> |
|
|
|
|
<div> |
|
|
|
|
<el-input placeholder="请输入试卷名称" prefix-icon="el-icon-search" v-model.trim="keyword" clearable></el-input> |
|
|
|
|
</div> |
|
|
|
|
<el-card v-if="isTheory" shadow="hover" class="m-b-20"> |
|
|
|
|
<div class="flex-between m-b-20"> |
|
|
|
|
<span>理论试卷</span> |
|
|
|
|
<div style="display: inline-flex;"> |
|
|
|
|
<div> |
|
|
|
|
<el-input placeholder="请输入试卷名称" prefix-icon="el-icon-search" v-model.trim="keyword" clearable></el-input> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<p v-if="form.paperName" style="margin-bottom: 20px"> |
|
|
|
|
已选试卷:{{ form.paperName }} |
|
|
|
|
<el-button type="primary" size="mini" @click="previewPaper(form)">预览</el-button> |
|
|
|
|
</p> |
|
|
|
|
<el-table :data="projects" class="table" header-align="center"> |
|
|
|
|
<el-table-column width="60" label="选择" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-radio v-model="form.paperId" :label="scope.row.paperId" @change="paperChange"> </el-radio> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column type="index" width="60" label="序号" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="name" label="试卷名称" min-width="140" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="questionCount" label="试题总数" align="center" min-width="70"></el-table-column> |
|
|
|
|
<el-table-column prop="score" label="总分" align="center" min-width="70"></el-table-column> |
|
|
|
|
<el-table-column prop="difficult" label="试卷难度" align="center" min-width="70" sortable="custom"> |
|
|
|
|
<template slot-scope="scope">{{ difficults.find(e => e.id === scope.row.difficult) ? difficults.find(e => |
|
|
|
|
e.id === scope.row.difficult).name : '' }}</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="suggestTime" label="建议用时" align="center" min-width="70"> |
|
|
|
|
<template slot-scope="scope">{{ scope.row.suggestTime }}min</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="classificationPath" label="试卷分类" align="center" min-width="70" |
|
|
|
|
show-overflow-tooltip></el-table-column> |
|
|
|
|
<el-table-column label="建议用途" align="center" min-width="70"> |
|
|
|
|
<template slot-scope="scope">{{ paperTypes.find(e => e.id === scope.row.paperType) ? paperTypes.find(e => |
|
|
|
|
e.id === scope.row.paperType).name : '' }}</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="updateTime" label="最近编辑时间" align="center" width="170"></el-table-column> |
|
|
|
|
<el-table-column prop="createUser" label="最近编辑人" align="center" width="110"></el-table-column> |
|
|
|
|
<el-table-column label="操作" align="center" width="80"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button type="text" @click="previewPaper(scope.row)">预览</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
<div class="pagination"> |
|
|
|
|
<el-pagination background :page-size="pageSize" @current-change="handleCurrentChange" |
|
|
|
|
layout="total,prev, pager, next" :total="total"></el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template v-else> |
|
|
|
|
<el-card shadow="hover" class="mgr20 m-b-20"> |
|
|
|
|
<div> |
|
|
|
|
<p class="m-b-20">课程</p> |
|
|
|
|
<div class="inline-input"> |
|
|
|
|
<el-cascader ref="cur" v-model="mallIds" :options="curs" :props="{ checkStrictly: true, value: 'id' }" |
|
|
|
|
popper-class="course-cas" @expand-change="curChange" @change="curChange"></el-cascader> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
</div> |
|
|
|
|
<p v-if="form.paperName" style="margin-bottom: 20px"> |
|
|
|
|
已选试卷:{{ form.paperName }} |
|
|
|
|
<el-button type="primary" size="mini" @click="previewPaper(form)">预览</el-button> |
|
|
|
|
</p> |
|
|
|
|
<el-table :data="projects" class="table" header-align="center"> |
|
|
|
|
<el-table-column width="60" label="选择" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-radio v-model="form.paperId" :label="scope.row.paperId" @change="paperChange"> </el-radio> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column type="index" width="60" label="序号" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="name" label="试卷名称" min-width="140" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="questionCount" label="试题总数" align="center" min-width="70"></el-table-column> |
|
|
|
|
<el-table-column prop="score" label="总分" align="center" min-width="70"></el-table-column> |
|
|
|
|
<el-table-column prop="difficult" label="试卷难度" align="center" min-width="70" sortable="custom"> |
|
|
|
|
<template slot-scope="scope">{{ difficults.find(e => e.id === scope.row.difficult) ? difficults.find(e => |
|
|
|
|
e.id === scope.row.difficult).name : '' }}</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="suggestTime" label="建议用时" align="center" min-width="70"> |
|
|
|
|
<template slot-scope="scope">{{ scope.row.suggestTime }}min</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="classificationPath" label="试卷分类" align="center" min-width="70" |
|
|
|
|
show-overflow-tooltip></el-table-column> |
|
|
|
|
<el-table-column label="建议用途" align="center" min-width="70"> |
|
|
|
|
<template slot-scope="scope">{{ paperTypes.find(e => e.id === scope.row.paperType) ? paperTypes.find(e => |
|
|
|
|
e.id === scope.row.paperType).name : '' }}</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="updateTime" label="最近编辑时间" align="center" width="170"></el-table-column> |
|
|
|
|
<el-table-column prop="createUser" label="最近编辑人" align="center" width="110"></el-table-column> |
|
|
|
|
<el-table-column label="操作" align="center" width="80"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button type="text" @click="previewPaper(scope.row)">预览</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
<div class="pagination"> |
|
|
|
|
<el-pagination background :page-size="pageSize" @current-change="handleCurrentChange" |
|
|
|
|
layout="total,prev, pager, next" :total="total"></el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
|
<el-card shadow="hover" class="m-b-20"> |
|
|
|
|
<div class="flex-between m-b-20"> |
|
|
|
|
<span>实训项目</span> |
|
|
|
|
<div style="display: inline-flex;"> |
|
|
|
|
<div> |
|
|
|
|
<el-input placeholder="请输入项目名称" prefix-icon="el-icon-search" v-model.trim="keyword" clearable></el-input> |
|
|
|
|
</div> |
|
|
|
|
<el-button style="margin-left: 5px" type="primary" round @click="toProject">自定义实验项目</el-button> |
|
|
|
|
<el-card v-else shadow="hover" class="m-b-20"> |
|
|
|
|
<div class="flex-between m-b-20"> |
|
|
|
|
<span>实训项目</span> |
|
|
|
|
<div style="display: inline-flex;"> |
|
|
|
|
<div> |
|
|
|
|
<el-input placeholder="请输入项目名称" prefix-icon="el-icon-search" v-model.trim="keyword" clearable></el-input> |
|
|
|
|
</div> |
|
|
|
|
<el-button style="margin-left: 5px" type="primary" round @click="toProject">自定义实验项目</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- 实训项目表格 --> |
|
|
|
|
<el-table :data="projects" class="table" header-align="center"> |
|
|
|
|
<el-table-column width="60" label="选择" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-radio v-model="form.projectId" :label="scope.row.projectId"> </el-radio> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="auth" label="项目权限" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ permissionsKeys[scope.row.permissions] }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="founder" label="创建人" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ scope.row.founder ? '老师创建' : '系统内置' }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="createTime" label="创建时间" align="center"></el-table-column> |
|
|
|
|
<!-- <el-table-column label="操作" align="center"> |
|
|
|
|
</div> |
|
|
|
|
<!-- 实训项目表格 --> |
|
|
|
|
<el-table :data="projects" class="table" header-align="center"> |
|
|
|
|
<el-table-column width="60" label="选择" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-radio v-model="form.projectId" :label="scope.row.projectId"> </el-radio> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="auth" label="项目权限" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ permissionsKeys[scope.row.permissions] }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="founder" label="创建人" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ scope.row.founder ? '老师创建' : '系统内置' }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="createTime" label="创建时间" align="center"></el-table-column> |
|
|
|
|
<!-- <el-table-column label="操作" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button type="text" @click="showProject(scope.row)">查看</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> --> |
|
|
|
|
</el-table> |
|
|
|
|
<div class="pagination"> |
|
|
|
|
<el-pagination background :page-size="pageSize" @current-change="handleCurrentChange" |
|
|
|
|
layout="total,prev, pager, next" :total="total"></el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
</template> |
|
|
|
|
</el-table> |
|
|
|
|
<div class="pagination"> |
|
|
|
|
<el-pagination background :page-size="pageSize" @current-change="handleCurrentChange" |
|
|
|
|
layout="total,prev, pager, next" :total="total"></el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
|
<div style="text-align: center"> |
|
|
|
|
<el-button @click="back">返回</el-button> |
|
|
|
@ -158,7 +155,7 @@ |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import Setting from '@/setting' |
|
|
|
|
import util from "@/libs/util"; |
|
|
|
|
import Util from '@/libs/util' |
|
|
|
|
import { Loading } from 'element-ui' |
|
|
|
|
import TestPaperConst from '@/const/testPaper' |
|
|
|
|
export default { |
|
|
|
@ -169,9 +166,10 @@ export default { |
|
|
|
|
paperTypes: TestPaperConst.paperTypes, |
|
|
|
|
loadIns: null, |
|
|
|
|
mallIds: [], |
|
|
|
|
systemId: '', |
|
|
|
|
curs: [], |
|
|
|
|
paperLibraries: [], |
|
|
|
|
testPapers: [], |
|
|
|
|
services: [], |
|
|
|
|
keyword: '', |
|
|
|
|
projects: [], |
|
|
|
|
page: 1, |
|
|
|
@ -214,11 +212,17 @@ export default { |
|
|
|
|
// 获取课程 |
|
|
|
|
async getCourse () { |
|
|
|
|
const sid = this.$store.state.dataPer.find(e => e.permissionName === '服务配置') |
|
|
|
|
const { serviceList } = await this.$post(this.api.queryServiceConfig, { |
|
|
|
|
// 查询服务器列表 |
|
|
|
|
const res = await this.$post(this.api.queryServiceConfig, { |
|
|
|
|
pageNum: 1, |
|
|
|
|
pageSize: 1000, |
|
|
|
|
supplierId: sid ? sid.supplierId : '' |
|
|
|
|
}) |
|
|
|
|
const services = res.serviceList.records |
|
|
|
|
this.services = services |
|
|
|
|
this.systemId = services[0].systemId |
|
|
|
|
|
|
|
|
|
// 查询产品列表 |
|
|
|
|
const { page } = await this.$post(this.api.listOfGoods, { |
|
|
|
|
pageNum: 1, |
|
|
|
|
pageSize: 10000, |
|
|
|
@ -230,14 +234,14 @@ export default { |
|
|
|
|
const { records } = page |
|
|
|
|
const { mallId, cid, systemId } = this.form |
|
|
|
|
if (records.length) { |
|
|
|
|
serviceList.records.map(e => { |
|
|
|
|
services.map(e => { |
|
|
|
|
e.id = +e.systemId |
|
|
|
|
e.label = e.systemName |
|
|
|
|
}) |
|
|
|
|
records.map(e => { |
|
|
|
|
e.id = +e.mallId |
|
|
|
|
e.label = e.productName |
|
|
|
|
e.children = serviceList.records.filter(n => e.systemId && e.systemId.split(',').includes(n.systemId)) // 筛选出该课程下的系统 |
|
|
|
|
e.children = services.filter(n => e.systemId && e.systemId.split(',').includes(n.systemId)) // 筛选出该课程下的系统 |
|
|
|
|
}) |
|
|
|
|
this.curs = records |
|
|
|
|
|
|
|
|
@ -302,18 +306,24 @@ export default { |
|
|
|
|
}) |
|
|
|
|
this.projects = res.pageList.records |
|
|
|
|
this.total = res.pageList.total |
|
|
|
|
} else { |
|
|
|
|
// 实训查询项目 |
|
|
|
|
const { data } = await this.$post(this.api.getProjectAssessmentByCompetition, { |
|
|
|
|
pageNum: this.page, |
|
|
|
|
pageSize: this.pageSize, |
|
|
|
|
cid: this.form.cid, |
|
|
|
|
projectName: this.keyword, |
|
|
|
|
systemId: this.sysId, |
|
|
|
|
permissions: 2, |
|
|
|
|
}) |
|
|
|
|
this.projects = data.records |
|
|
|
|
this.total = data.total |
|
|
|
|
} else { // 实训 |
|
|
|
|
// 根据系统查询项目 |
|
|
|
|
if (this.courseSystem) { |
|
|
|
|
const res = await this.$get(`${this.api.getInternalProjectBySystemId}?permissions=2&systemId=${this.systemId}&keyword=${this.keyword}`) |
|
|
|
|
this.projects = res |
|
|
|
|
} else { |
|
|
|
|
// 根据课程查询项目 |
|
|
|
|
const { data } = await this.$post(this.api.getProjectAssessmentByCompetition, { |
|
|
|
|
pageNum: this.page, |
|
|
|
|
pageSize: this.pageSize, |
|
|
|
|
cid: this.form.cid, |
|
|
|
|
projectName: this.keyword, |
|
|
|
|
systemId: this.sysId, |
|
|
|
|
permissions: 2, |
|
|
|
|
}) |
|
|
|
|
this.projects = data.records |
|
|
|
|
this.total = data.total |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} finally { |
|
|
|
|
this.loadIns.close() |
|
|
|
@ -345,7 +355,7 @@ export default { |
|
|
|
|
const { playStartTime, playEndTime } = this.step1 |
|
|
|
|
if (startTime < new Date(playStartTime) || endTime > new Date(playEndTime)) { |
|
|
|
|
this.timeInvalid = true |
|
|
|
|
return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
|
|
|
|
return Util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
|
|
|
|
} |
|
|
|
|
this.timeInvalid = false |
|
|
|
|
const { form, curStep } = this.$parent |
|
|
|
@ -355,7 +365,7 @@ export default { |
|
|
|
|
const time1 = new Date(form[i].startTime) |
|
|
|
|
const time2 = new Date(form[i].endTime) |
|
|
|
|
if ((startTime >= time1 && startTime <= time2) || (endTime >= time1 && endTime <= time2)) { |
|
|
|
|
util.warningMsg('请注意,所设置的时间与已设置的阶段时间重合。') |
|
|
|
|
Util.warningMsg('请注意,所设置的时间与已设置的阶段时间重合。') |
|
|
|
|
break |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -374,20 +384,20 @@ export default { |
|
|
|
|
// 提交 |
|
|
|
|
save () { |
|
|
|
|
const { form } = this |
|
|
|
|
if (!form.time.length) return util.warningMsg('请选择比赛时间') |
|
|
|
|
if (!form.time.length) return Util.warningMsg('请选择比赛时间') |
|
|
|
|
const { playStartTime, playEndTime } = this.step1 |
|
|
|
|
if (new Date(form.time[0]) < new Date(playStartTime) || new Date(form.time[1]) > new Date(playEndTime)) return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
|
|
|
|
if (new Date(form.time[0]) < new Date(playStartTime) || new Date(form.time[1]) > new Date(playEndTime)) return Util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
|
|
|
|
// 理论试卷存试卷库等 |
|
|
|
|
if (this.isTheory) { |
|
|
|
|
if (!this.libraryId) return util.warningMsg('请选择试卷库') |
|
|
|
|
if (!form.paperId) return util.warningMsg('请选择试卷') |
|
|
|
|
if (!this.libraryId) return Util.warningMsg('请选择试卷库') |
|
|
|
|
if (!form.paperId) return Util.warningMsg('请选择试卷') |
|
|
|
|
|
|
|
|
|
form.libraryId = this.libraryId |
|
|
|
|
const curPaper = this.projects.find(e => e.paperId === form.paperId) |
|
|
|
|
if (curPaper) form.paperName = curPaper.name |
|
|
|
|
} else { |
|
|
|
|
if (!form.cid) return util.warningMsg('请选择课程') |
|
|
|
|
if (!form.projectId) return util.warningMsg('请选择项目') |
|
|
|
|
if (!form.cid) return Util.warningMsg('请选择课程') |
|
|
|
|
if (!form.projectId) return Util.warningMsg('请选择项目') |
|
|
|
|
const { systemId, systemName, projectName } = this.projects.find(e => e.projectId == form.projectId) |
|
|
|
|
if (systemId) form.systemId = systemId |
|
|
|
|
if (projectName) form.projectName = projectName |
|
|
|
|