|  | @@ -251,12 +251,12 @@
 | 
	
		
			
				|  |  |              <el-option
 | 
	
		
			
				|  |  |                v-for="(item, key) in educationList"
 | 
	
		
			
				|  |  |                :key="key"
 | 
	
		
			
				|  |  | -              :label="item"
 | 
	
		
			
				|  |  | -              :value="Number(key)"
 | 
	
		
			
				|  |  | +              :label="item.userName"
 | 
	
		
			
				|  |  | +              :value="Number(item.userId)"
 | 
	
		
			
				|  |  |              >
 | 
	
		
			
				|  |  | -              <span style="float: left">{{ item }}</span>
 | 
	
		
			
				|  |  | +              <span style="float: left">{{ item.userName }}</span>
 | 
	
		
			
				|  |  |                <span style="float: right; color: #8492a6; font-size: 13px">{{
 | 
	
		
			
				|  |  | -                String(key)
 | 
	
		
			
				|  |  | +                String(item.userId)
 | 
	
		
			
				|  |  |                }}</span>
 | 
	
		
			
				|  |  |              </el-option>
 | 
	
		
			
				|  |  |            </el-select>
 | 
	
	
		
			
				|  | @@ -292,12 +292,12 @@
 | 
	
		
			
				|  |  |              <el-option
 | 
	
		
			
				|  |  |                v-for="(item, key) in technician"
 | 
	
		
			
				|  |  |                :key="key"
 | 
	
		
			
				|  |  | -              :label="item"
 | 
	
		
			
				|  |  | -              :value="key"
 | 
	
		
			
				|  |  | +              :label="item.userId"
 | 
	
		
			
				|  |  | +              :value="item.userName"
 | 
	
		
			
				|  |  |              >
 | 
	
		
			
				|  |  | -              <span style="float: left">{{ item }}</span>
 | 
	
		
			
				|  |  | +              <span style="float: left">{{ item.userId }}</span>
 | 
	
		
			
				|  |  |                <span style="float: right; color: #8492a6; font-size: 13px">{{
 | 
	
		
			
				|  |  | -                String(key)
 | 
	
		
			
				|  |  | +                String(userName)
 | 
	
		
			
				|  |  |                }}</span>
 | 
	
		
			
				|  |  |              </el-option>
 | 
	
		
			
				|  |  |            </el-select>
 | 
	
	
		
			
				|  | @@ -312,12 +312,12 @@
 | 
	
		
			
				|  |  |              <el-option
 | 
	
		
			
				|  |  |                v-for="(item, key) in transactionList"
 | 
	
		
			
				|  |  |                :key="key"
 | 
	
		
			
				|  |  | -              :label="item"
 | 
	
		
			
				|  |  | -              :value="key"
 | 
	
		
			
				|  |  | +              :label="item.userName"
 | 
	
		
			
				|  |  | +              :value="item.userId"
 | 
	
		
			
				|  |  |              >
 | 
	
		
			
				|  |  | -              <span style="float: left">{{ item }}</span>
 | 
	
		
			
				|  |  | +              <span style="float: left">{{ item.userName }}</span>
 | 
	
		
			
				|  |  |                <span style="float: right; color: #8492a6; font-size: 13px">{{
 | 
	
		
			
				|  |  | -                String(key)
 | 
	
		
			
				|  |  | +                String(item.userId)
 | 
	
		
			
				|  |  |                }}</span>
 | 
	
		
			
				|  |  |              </el-option>
 | 
	
		
			
				|  |  |            </el-select>
 | 
	
	
		
			
				|  | @@ -794,12 +794,12 @@ export default {
 | 
	
		
			
				|  |  |            id: val,
 | 
	
		
			
				|  |  |          });
 | 
	
		
			
				|  |  |          // 乐团主管
 | 
	
		
			
				|  |  | -        this.educationList = ruselt?.data?.educationId;
 | 
	
		
			
				|  |  | +        this.educationList = ruselt?.data?.EDUCATION;
 | 
	
		
			
				|  |  |          // 维修技师
 | 
	
		
			
				|  |  | -        this.technician =ruselt?.data?.repairId
 | 
	
		
			
				|  |  | +        this.technician =ruselt?.data?.REPAIR
 | 
	
		
			
				|  |  |          // this.bossList = ruselt?.data?.TEAM_TEACHER;
 | 
	
		
			
				|  |  |               // 衔接老师
 | 
	
		
			
				|  |  | -        this.transactionList = ruselt?.data?.joinTeacherId;
 | 
	
		
			
				|  |  | +        this.transactionList = ruselt?.data?.JOIN_TEACHER;
 | 
	
		
			
				|  |  |        } catch (e) {
 | 
	
		
			
				|  |  |          console.log(e);
 | 
	
		
			
				|  |  |        }
 |