|
@@ -31,22 +31,18 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<!-- statusList -->
|
|
|
- <!-- <el-form-item prop="status">
|
|
|
+ <el-form-item prop="status">
|
|
|
<el-select
|
|
|
class="multiple"
|
|
|
- v-model.trim="searchForm.status"
|
|
|
+ v-model.trim="searchForm.hasEducationalTeacherId"
|
|
|
filterable
|
|
|
clearable
|
|
|
- placeholder="请选课程状态"
|
|
|
+ placeholder="是否有教务老师"
|
|
|
>
|
|
|
- <el-option
|
|
|
- v-for="(item,index) in statusList"
|
|
|
- :key="index"
|
|
|
- :label="item.lable"
|
|
|
- :value="item.value"
|
|
|
- ></el-option>
|
|
|
+ <el-option label="是" value="true"></el-option>
|
|
|
+ <el-option label="否" value="false"></el-option>
|
|
|
</el-select>
|
|
|
- </el-form-item>-->
|
|
|
+ </el-form-item>
|
|
|
|
|
|
<el-form-item>
|
|
|
<el-select v-model.trim="searchForm.teacherId" clearable filterable placeholder="指导老师">
|
|
@@ -74,8 +70,7 @@
|
|
|
<el-table-column align="center" prop="name" label="课程组名称"></el-table-column>
|
|
|
<el-table-column align="center" prop="organName" label="所属分部"></el-table-column>
|
|
|
<!-- educationalTeacherId -->
|
|
|
- <el-table-column align="center" prop="educationalTeacherName" label="教务老师">
|
|
|
- </el-table-column>
|
|
|
+ <el-table-column align="center" prop="educationalTeacherName" label="教务老师"></el-table-column>
|
|
|
<el-table-column align="center" prop="teacherName" label="指导老师"></el-table-column>
|
|
|
<el-table-column align="center" prop="studentNum" label="班级人数"></el-table-column>
|
|
|
<!-- <el-table-column align="center" label="课程单价">
|
|
@@ -250,7 +245,8 @@ export default {
|
|
|
teacherId: this.searchForm.teacherId || null,
|
|
|
organId: this.searchForm.organIdList || null,
|
|
|
page: this.rules.page,
|
|
|
- rows: this.rules.limit
|
|
|
+ rows: this.rules.limit,
|
|
|
+ hasEducationalTeacherId:this.searchForm.hasEducationalTeacherId || null
|
|
|
};
|
|
|
practiceGroupManage(obj).then(res => {
|
|
|
if (res.code == 200) {
|
|
@@ -281,7 +277,7 @@ export default {
|
|
|
this.$message.error("请输入退费金额");
|
|
|
return;
|
|
|
}
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
this.closeForm.money = null;
|
|
|
}
|
|
|
// 请求数据
|
|
@@ -301,7 +297,7 @@ export default {
|
|
|
watch: {
|
|
|
closeVisible(val) {
|
|
|
if (!val) {
|
|
|
- console.log(val)
|
|
|
+ console.log(val);
|
|
|
this.activeRow = null;
|
|
|
(this.closeForm = {
|
|
|
isBack: false,
|