This commit is contained in:
zhangsir
2024-10-30 17:47:33 +08:00
parent 885c7f9242
commit 041643a135
6 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ export default {
},
methods:{
getTeacherList() {
addTeacher({pageNo:1,pageSize:100,keyword:''}).then(res=>{
addTeacher({pageNo:1,pageSize:100,userNo:''}).then(res=>{
this.options = res.data.map(item => {
return { value: item.realName, label: item.realName };
});