Commit eec9881d authored by 刘怀志's avatar 刘怀志

72039 (已修改)【PC端】考核结果显示中的问答题部分,需要按照最新原型修改

72084 【PC端】课程学习页中进行考核时,缺少课程名称的显示
72087 【PC端】查看答卷时,多选题看不出来答题者选中了哪个选项
72098 【PC端】课程学习页,目录区域,小节无可观看的视频时,鼠标不要变成小手形状
72111 课程管理-新增开课-单位回显异常
parent b8b14d1f
......@@ -169,13 +169,13 @@
<!-- <el-table-column label="岗位分类" prop="jobClassification" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span> {{ getJobClassificationName(scope.row.jobClassification) || '-' }}</span>
</template>
</el-table-column> -->
<!-- <el-table-column label="技术分类" prop="value" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span> {{ getCourseDirectionName(scope.row.technicalClassification) || '-' }}</span>
</template>
</el-table-column> -->
<el-table-column label="开始日期" prop="value2" :show-overflow-tooltip="true">
......@@ -934,7 +934,7 @@
v-for="(items,index) in unitOptions"
:key="index"
:label="items.unitName"
:value="items"
:value="items.businessId"
/>
</el-select>
</el-form-item>
......@@ -1150,7 +1150,7 @@
</template>
</el-table-column>
<!-- 技术分类 -->
<el-table-column align="center" v-if="this.needUnitType == 0" label="企业技术分类" prop="tecClassify" min-width="120px" :show-overflow-tooltip="true">
<el-table-column v-if="this.needUnitType == 0" align="center" label="企业技术分类" prop="tecClassify" min-width="120px" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ getCourseDirectionLabelAndName(scope.row.tecClassify) }}</span>
</template>
......@@ -1167,7 +1167,7 @@
</template>
</el-table-column>
<!-- 技术分类 -->
<el-table-column align="center" v-if="this.needUnitType == 1" label="院校技术分类" prop="tecClassifySchool" min-width="120px" :show-overflow-tooltip="true">
<el-table-column v-if="this.needUnitType == 1" align="center" label="院校技术分类" prop="tecClassifySchool" min-width="120px" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ getCourseDirectionLabelAndName(scope.row.tecClassifySchool) }}</span>
</template>
......@@ -1544,11 +1544,15 @@ export default {
},
// 处理选择的开课管理
handleChangeUnit(val) {
// console.log(val);
let value = val.businessId
const value = val
this.needUnitType = val.unitType
// console.log(value);
this.unitOptions.forEach(item => {
if (item.businessId === val) {
this.needUnitType = item.unitType
}
})
console.log('handleChangeUnit', this.needUnitType)
if (value) {
// console.log(value);
// 获取课程类型
......@@ -1562,8 +1566,8 @@ export default {
lessonType: this.applicantType,
applicantType: '2'
}
console.log('=======');
console.log(query);
console.log('=======')
console.log(query)
queryBLessonWithTrial(query).then(res => {
this.lessonList = res.records
this.total1 = res.total
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment