讲师管理bug

This commit is contained in:
zhangsir
2024-11-28 14:09:04 +08:00
parent 4392e764c1
commit ffeab66978
3 changed files with 28 additions and 6 deletions

View File

@@ -154,11 +154,11 @@ watch(stuSelectRows,(val)=>{
}
teaunm.value = val.map((res,index)=>{
return {
userName:res.realName,
userNo:res.userNo,
userName:res?.realName,
userNo:res?.userNo,
type: props.type,
userId: res.id,
label: res.realName + res.userNo,
userId: res?.id,
label: res?.realName + res?.userNo,
...res
}
})