【优化】当组织机构下存在岗位Id, 通过岗位Id回显获取不到数据时, 回显提示错误

pull/135/MERGE
15894237752 2023-07-13 16:05:00 +08:00 committed by 小诺
parent caf0eb0e5e
commit 266c0ffbf5
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@
idList: [modelValue.value]
}
props.echoFunction(param).then((data) => {
options.value.push(data[0])
if (data[0]){
options.value.push(data[0])
}
})
}
}