This commit is contained in:
wangjinlei
2024-11-13 16:10:14 +08:00
parent ef91e9de61
commit 11560a503c
4 changed files with 108 additions and 47 deletions

View File

@@ -581,6 +581,15 @@ class Reviewer extends Base
return json(['data' => $file_list]);
}
public function getCFilelistByID()
{
$rev_id = $this->request->post('revid');
$article_rev_info = $this->article_reviewer_obj->where('art_rev_id', $rev_id)->find();
$file_list = $this->article_file_obj->where('article_id', $article_rev_info['article_id'])->where('type_name', 'supplementary')->order('file_id desc')->limit(1)->select();
return json(['data' => $file_list]);
}
/**
* @title 审稿人详情页--获取文章审稿实例详情(审稿人,编辑)
* @description 审稿人详情页--获取文章审稿实例详情(审稿人,编辑)