|  | @@ -18,6 +18,10 @@
 | 
	
		
			
				|  |  |              type="text"
 | 
	
		
			
				|  |  |              @keyup.enter.native="queryOrgTeacherUserList"
 | 
	
		
			
				|  |  |            />
 | 
	
		
			
				|  |  | +          <span class="search-name">审核状态</span>
 | 
	
		
			
				|  |  | +          <el-select v-model="is_audited">
 | 
	
		
			
				|  |  | +            <el-option v-for="{ value, label } in auditedList" :key="value" :value="value" :label="label" />
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  |          </el-col>
 | 
	
		
			
				|  |  |          <el-col :span="2">
 | 
	
		
			
				|  |  |            <el-button class="search-button" icon="el-icon-search" @click="queryOrgTeacherUserList"></el-button>
 | 
	
	
		
			
				|  | @@ -99,7 +103,22 @@ export default {
 | 
	
		
			
				|  |  |        page_capacity: 10,
 | 
	
		
			
				|  |  |        total_count: 0,
 | 
	
		
			
				|  |  |        cur_page: 1,
 | 
	
		
			
				|  |  | -      popedom_list: []
 | 
	
		
			
				|  |  | +      popedom_list: [],
 | 
	
		
			
				|  |  | +      auditedList: [
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          value: '',
 | 
	
		
			
				|  |  | +          label: '所有'
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          value: true,
 | 
	
		
			
				|  |  | +          label: '已审核'
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          value: false,
 | 
	
		
			
				|  |  | +          label: '未审核'
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +      ],
 | 
	
		
			
				|  |  | +      is_audited: ''
 | 
	
		
			
				|  |  |      };
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    created() {
 | 
	
	
		
			
				|  | @@ -119,7 +138,8 @@ export default {
 | 
	
		
			
				|  |  |          user_name: this.user_name,
 | 
	
		
			
				|  |  |          user_real_name: this.user_real_name,
 | 
	
		
			
				|  |  |          page_capacity: this.page_capacity,
 | 
	
		
			
				|  |  | -        cur_page: this.cur_page
 | 
	
		
			
				|  |  | +        cur_page: this.cur_page,
 | 
	
		
			
				|  |  | +        is_audited: this.is_audited
 | 
	
		
			
				|  |  |        }).then(({ cur_page, org_teacher_user_list, total_count }) => {
 | 
	
		
			
				|  |  |          this.cur_page = cur_page;
 | 
	
		
			
				|  |  |          this.org_teacher_user_list = org_teacher_user_list;
 |