This commit is contained in:
zhaofang
2022-11-14 19:47:22 +08:00
parent feb32a7b36
commit 00cf84c906
3 changed files with 10 additions and 5 deletions

View File

@@ -275,9 +275,12 @@
list.forEach((item,index)=>{
res.result.some(author=>{
if(author.aid==item.sysCreateAid){
if(author.avatar != '') {
if(item.parentId == "-1" ) {
item.avatar= author.avatar;
} else if(author.avatar != ''){
item.avatar=this.$config.fileUrl + author.avatar;
}
// item.avatar= author.avatar;
item.sex=author.sex;
item.orgInfo=author.orgInfo;
return true;