|
@@ -251,12 +251,12 @@
|
|
<el-option
|
|
<el-option
|
|
v-for="(item, key) in educationList"
|
|
v-for="(item, key) in educationList"
|
|
:key="key"
|
|
: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">{{
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{
|
|
- String(key)
|
|
|
|
|
|
+ String(item.userId)
|
|
}}</span>
|
|
}}</span>
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
@@ -292,12 +292,12 @@
|
|
<el-option
|
|
<el-option
|
|
v-for="(item, key) in technician"
|
|
v-for="(item, key) in technician"
|
|
:key="key"
|
|
: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">{{
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{
|
|
- String(key)
|
|
|
|
|
|
+ String(userName)
|
|
}}</span>
|
|
}}</span>
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
@@ -312,12 +312,12 @@
|
|
<el-option
|
|
<el-option
|
|
v-for="(item, key) in transactionList"
|
|
v-for="(item, key) in transactionList"
|
|
:key="key"
|
|
: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">{{
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{
|
|
- String(key)
|
|
|
|
|
|
+ String(item.userId)
|
|
}}</span>
|
|
}}</span>
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
@@ -794,12 +794,12 @@ export default {
|
|
id: val,
|
|
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.bossList = ruselt?.data?.TEAM_TEACHER;
|
|
// 衔接老师
|
|
// 衔接老师
|
|
- this.transactionList = ruselt?.data?.joinTeacherId;
|
|
|
|
|
|
+ this.transactionList = ruselt?.data?.JOIN_TEACHER;
|
|
} catch (e) {
|
|
} catch (e) {
|
|
console.log(e);
|
|
console.log(e);
|
|
}
|
|
}
|