Commit b13916d1 authored by 王飞龙's avatar 王飞龙

课程管理修改

parent 5fd9a9dc
......@@ -468,7 +468,6 @@
import CurCat from '../courseManagement/courseCatalogues.vue'
import {
queryBLessonsByPagination,
queryDirectionsList,
blessonAdd,
blessonRemove,
excelImport,
......
......@@ -27,7 +27,6 @@
</el-col>
<el-col :span="12">
<el-form-item label="课程方案:" prop="111" :rules="[{ required: status !== '3', message: '请输入课程方案', trigger: 'blur' }]">
<el-form-item label="课程方案:" prop="111" >
<el-select
v-model="form.value4"
filterable
......@@ -80,7 +79,7 @@
<el-row :gutter="100">
<el-col :span="12">
<el-form-item label="课程讲师:" prop="22" :rules="[{ required: status !== '3', message: '请输入课程讲师', trigger: 'blur' }]">
<!-- <el-form-item label="课程讲师:" prop="22" >-->
<!-- <el-form-item label="课程讲师:" prop="22" >-->
<el-select
v-model="form.value7"
filterable
......@@ -278,16 +277,30 @@ export default {
this.difficultyLevlList = res.data
})
},
gethomeShow() {
getDict('show_home').then(res => {
this.homeDisplay = res.data
})
},
getEnterpriseCourseList() {
getDict('course_excellent').then(res => {
this.enterpriseCourseList = res.data
})
},
// 获取课程方案
getCoursePlan() {
getDict('class_plan').then(res => {
this.coursePlanOptions = res.data
console.log('课程方案', this.coursePlanOptions)
})
},
// 获取岗位类型
getJobClassification() {
getDict('job_classify').then(res => {
this.valueOptions = res.data
})
},
// 获取技术分类
getCourseDirection() {
getDict('tec_classify').then(res => {
this.courseDirection = res.data
})
},
// 保存
submit() {
this.$refs.courseRef.validate(valid => {
......
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