From 2958024f6934789f489645bfe9ef79a2f1b8e9f7 Mon Sep 17 00:00:00 2001 From: chengxl Date: Fri, 5 Dec 2025 14:41:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Workbench.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/controller/Workbench.php b/application/api/controller/Workbench.php index e544d0b1..7cc2f8ea 100644 --- a/application/api/controller/Workbench.php +++ b/application/api/controller/Workbench.php @@ -507,7 +507,7 @@ class Workbench extends Base $aArticle['type_name'] = translateType($aArticle['type']);//文章类型 //查询期刊信息 $aWhere = ['journal_id' => $aArticle['article_id'],'state' => 0]; - $aJournal = Db::name('journal')->field('title as journal_name,website')->find(); + $aJournal = Db::name('journal')->field('title as journal_name,website,email as journal_email')->find(); if(!empty($aJournal)){ $aArticle += $aJournal; }