|
@@ -23,9 +23,15 @@
|
|
|
v-model.trim="searchForm.search"
|
|
|
clearable
|
|
|
@keyup.enter.native="search"
|
|
|
- placeholder="课程编号/课程名称"
|
|
|
+ placeholder="课程名称、编号"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item prop="teacherId">
|
|
|
+ <remote-search
|
|
|
+ :commit="'setTeachers'"
|
|
|
+ v-model="searchForm.teacherId"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
<el-form-item prop="organId">
|
|
|
<el-select
|
|
|
class="multiple"
|
|
@@ -426,7 +432,7 @@ export default {
|
|
|
this.searchForm.timer = [nowTime, nowTime];
|
|
|
}
|
|
|
this.rules.page = 1;
|
|
|
- this.getList()
|
|
|
+ this.getList();
|
|
|
},
|
|
|
getList() {
|
|
|
let obj = this.getSearchValues();
|
|
@@ -451,9 +457,8 @@ export default {
|
|
|
this.search();
|
|
|
},
|
|
|
hand(row) {
|
|
|
- this.detail = row;
|
|
|
+ this.detail = row;
|
|
|
this.handVisible = true;
|
|
|
-
|
|
|
},
|
|
|
appeal(row) {
|
|
|
this.appealVisible = true;
|