This commit is contained in:
wangjinlei
2024-10-16 14:53:44 +08:00
parent 4a84c9f21c
commit 10bdd968af
4 changed files with 87 additions and 7 deletions

View File

@@ -3411,6 +3411,19 @@ class Article extends Base
return json($res);
}
public function getJournalByAbbr(){
$data = $this->request->post();
$rule = new Validate([
"abbr"=>"require"
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$journal_info = $this->journal_obj->where("abbr",$data['abbr'])->find();
$re['detail'] = $journal_info;
return jsonSuccess($re);
}
/**
* 获取审核人详情
*/