Commit 379b7c78 authored by 纪泽龙's avatar 纪泽龙

修复

parent f59bf4ce
...@@ -259,13 +259,13 @@ export default { ...@@ -259,13 +259,13 @@ export default {
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */
handleAdd() { handleAdd() {
this.$refs.Dia.title = "新增培训课程"; this.$refs.Dia.title = "新增考试试卷";
this.componentsNum = 1; this.componentsNum = 1;
this.courseId = null; this.courseId = null;
this.dilogFlag = true; this.dilogFlag = true;
}, },
changeLesson(courseId) { changeLesson(courseId) {
this.$refs.Dia.title = "修改培训课程"; this.$refs.Dia.title = "修改考试试卷";
this.componentsNum = 1; this.componentsNum = 1;
this.courseId = courseId; this.courseId = courseId;
this.dilogFlag = true; this.dilogFlag = true;
......
...@@ -27,15 +27,16 @@ ...@@ -27,15 +27,16 @@
<div> <div>
<div class="top">参与培训人员({{personnelOptions.length}})</div> <div class="top">参与培训人员({{personnelOptions.length}})</div>
<div class="bottom"> <div class="bottom">
<el-checkbox-group class="" v-model="infoData.postIds"> <!-- <el-checkbox-group class="" v-model="infoData.postIds"> -->
<el-checkbox <el-checkbox
:disabled="!isActive" :disabled="!isActive"
v-model="personnel.ischeck"
v-for="personnel in personnelOptions" v-for="personnel in personnelOptions"
:label="personnel.postId" :label="personnel.postId"
:key="personnel.postId" :key="personnel.postId"
>{{ personnel.postName }}</el-checkbox >{{ personnel.postName }}</el-checkbox
> >
</el-checkbox-group> <!-- </el-checkbox-group> -->
</div> </div>
</div> </div>
</div> </div>
......
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