|
@@ -23,10 +23,10 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="organId">
|
|
|
+ <el-form-item prop="organIdList">
|
|
|
<el-select
|
|
|
class="multiple"
|
|
|
- v-model.trim="searchForm.organId"
|
|
|
+ v-model.trim="searchForm.organIdList"
|
|
|
filterable
|
|
|
clearable
|
|
|
placeholder="请选择分部"
|
|
@@ -143,7 +143,7 @@ export default {
|
|
|
search: null,
|
|
|
timer: [],
|
|
|
teacherId:null,
|
|
|
- organId:null
|
|
|
+ organIdList:null
|
|
|
},
|
|
|
rules: {
|
|
|
// 分页规则
|
|
@@ -222,7 +222,7 @@ export default {
|
|
|
obj.rows= this.rules.limit,
|
|
|
this.searchForm.teacherId?obj.teacherId = this.searchForm.teacherId:null;
|
|
|
this.searchForm.search?obj.title = this.searchForm.search:null;
|
|
|
- this.searchForm.organId?obj.organId = this.searchForm.organId:null;
|
|
|
+ this.searchForm.organIdList?obj.organIdList = this.searchForm.organIdList:null;
|
|
|
queryPageList(obj).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this.tableList = res.data.rows;
|
|
@@ -239,7 +239,7 @@ export default {
|
|
|
search: null,
|
|
|
timer: [],
|
|
|
teacherId:null,
|
|
|
- organId:null
|
|
|
+ organIdList:null
|
|
|
}
|
|
|
this.search();
|
|
|
},
|