This commit is contained in:
wangjinlei
2022-03-31 13:40:28 +08:00
parent 6d76720bbd
commit aa455942d5
2 changed files with 1 additions and 3 deletions

View File

@@ -556,8 +556,6 @@ class Journal extends Controller {
$list[$k]['isShowOtime'] = 0;
}
}
return json(['code' => 0, 'msg' => 'success', 'data' => ['stage' => $stage_info, 'articleList' => $list]]);
}

View File

@@ -303,7 +303,7 @@ class Special extends Controller {
$ca = '<a href="https://orcid.org/'.$v['orcid'].'" target="_blank"><img src="img/or_id.png" alt="" style="width: 13px;margin-left: 3px;"></a>';
}
$frag = $frag == '' ? '' . $v['author_name'].$ca : $frag . ', ' . $v['author_name'].$ca;
$frag = $frag == '' ? '' . $v['author_name'] : $frag . ', ' . $v['author_name'];
// $frag = $frag == '' ? '' . $v['author_name'] : $frag . ', ' . $v['author_name'];
}
return $frag;
}