|  | @@ -32,6 +32,7 @@
 | 
	
		
			
				|  |  |            <el-input
 | 
	
		
			
				|  |  |              v-model.trim="searchForm.search"
 | 
	
		
			
				|  |  |              @keyup.enter.native="search"
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  |              placeholder="课程编号、课程组名称"
 | 
	
		
			
				|  |  |            ></el-input>
 | 
	
		
			
				|  |  |          </el-form-item>
 | 
	
	
		
			
				|  | @@ -68,7 +69,8 @@
 | 
	
		
			
				|  |  |            </el-select>
 | 
	
		
			
				|  |  |          </el-form-item>
 | 
	
		
			
				|  |  |          <el-form-item>
 | 
	
		
			
				|  |  | -          <el-select
 | 
	
		
			
				|  |  | +          <remoteSearch :commit='"setTeachers"'  v-model='searchForm.teacherId' />
 | 
	
		
			
				|  |  | +          <!-- <el-select
 | 
	
		
			
				|  |  |              placeholder="老师姓名"
 | 
	
		
			
				|  |  |              v-model="searchForm.teacherId"
 | 
	
		
			
				|  |  |              clearable
 | 
	
	
		
			
				|  | @@ -80,7 +82,7 @@
 | 
	
		
			
				|  |  |                :value="item.id"
 | 
	
		
			
				|  |  |                :key="index"
 | 
	
		
			
				|  |  |              ></el-option>
 | 
	
		
			
				|  |  | -          </el-select>
 | 
	
		
			
				|  |  | +          </el-select> -->
 | 
	
		
			
				|  |  |          </el-form-item>
 | 
	
		
			
				|  |  |          <el-form-item>
 | 
	
		
			
				|  |  |            <el-select
 | 
	
	
		
			
				|  | @@ -358,6 +360,7 @@ import numeral from "numeral";
 | 
	
		
			
				|  |  |  import axios from "axios";
 | 
	
		
			
				|  |  |  import { getToken } from "@/utils/auth";
 | 
	
		
			
				|  |  |  import pagination from "@/components/Pagination/index";
 | 
	
		
			
				|  |  | +import remoteSearch from '@/components/remote-search/index'
 | 
	
		
			
				|  |  |  import load from "@/utils/loading";
 | 
	
		
			
				|  |  |  import {
 | 
	
		
			
				|  |  |    findIsSettlementCourseSalarys,
 | 
	
	
		
			
				|  | @@ -367,7 +370,7 @@ import {
 | 
	
		
			
				|  |  |  } from "@/api/journal";
 | 
	
		
			
				|  |  |  import { courseListType } from "@/utils/searchArray";
 | 
	
		
			
				|  |  |  export default {
 | 
	
		
			
				|  |  | -  components: { pagination },
 | 
	
		
			
				|  |  | +  components: { pagination, remoteSearch },
 | 
	
		
			
				|  |  |    data() {
 | 
	
		
			
				|  |  |      return {
 | 
	
		
			
				|  |  |        searchForm: {
 | 
	
	
		
			
				|  | @@ -412,9 +415,6 @@ export default {
 | 
	
		
			
				|  |  |      // 获取分部
 | 
	
		
			
				|  |  |      this.init();
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  | -  activated() {
 | 
	
		
			
				|  |  | -    this.init();
 | 
	
		
			
				|  |  | -  },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  |      init() {
 | 
	
		
			
				|  |  |        if (!this.searchForm.month) {
 |