文献校对功能完善

This commit is contained in:
wyn
2026-05-27 16:09:23 +08:00
parent 1fcd6a129d
commit 94b212fe7c
4 changed files with 681 additions and 80 deletions

View File

@@ -898,7 +898,17 @@ class Preaccept extends Base
return jsonSuccess($re);
}
public function getArticleMainById(){
$data = $this->request->post();
$rule = new Validate([
"am_id"=>"require"
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$am_info = $this->article_main_obj->where("am_id",$data['am_id'])->find();
return jsonSuccess($am_info);
}
public function changeH1(){
$data = $this->request->post();