From bcc1c353ca6a054bb4ed1c282a90e17cdd237eff Mon Sep 17 00:00:00 2001 From: chengxl Date: Thu, 19 Jun 2025 11:32:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E6=8E=A8=E8=8D=90=E5=AE=A1?= =?UTF-8?q?=E7=A8=BF=E4=BA=BA=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Article.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/application/api/controller/Article.php b/application/api/controller/Article.php index 9585b68..da0d2b7 100644 --- a/application/api/controller/Article.php +++ b/application/api/controller/Article.php @@ -1627,7 +1627,7 @@ class Article extends Base } } //文章状态修改为退修状态 给同意审稿但一直未审稿人发送邮件且扣减其分数值 chengxiaoling 20250617 end - + //重新计算审稿人的审稿质量 chengxiaoling start 0416 $this->reviewQuality($article_info['article_id']); //重新计算审稿人的审稿质量 chengxiaoling end 0416 @@ -4099,9 +4099,11 @@ class Article extends Base ->where($where)->limit($limit_start, $data['pageSize'])->select(); $count = $this->article_reviewer_obj->where($where)->count(); - foreach ($res as $k => $v) { - $res[$k]['major_str'] = $this->getMajorStr($v['major']); - } + //注释查询审稿人领域 修改为异步操作 chengxiaoling 20250617 start + // foreach ($res as $k => $v) { + // $res[$k]['major_str'] = $this->getMajorStr($v['major']); + // } + //注释查询审稿人领域 修改为异步操作 chengxiaoling 20250617 start if ($res) { return json(['code' => 0, 'data' => $res, 'totle' => $count]); } else {