This commit is contained in:
wangjinlei
2021-07-02 18:04:27 +08:00
parent a34439b183
commit 7f95e7ec98
6 changed files with 539 additions and 318 deletions

View File

@@ -288,6 +288,11 @@ class Special extends Controller {
$list = $this->article_author_obj->where($where)->select();
$frag = '';
foreach ($list as $k => $v) {
$ca = '';
if($v['orcid']!=''){
$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'];
}
return $frag;