From 085bf5365c996a18f8173fc7e39572464928f391 Mon Sep 17 00:00:00 2001 From: wangjinlei <751475802@qq.com> Date: Mon, 27 Apr 2026 16:44:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=87=AA=E5=8A=A8=E6=8E=A8?= =?UTF-8?q?=E5=B9=BF=E7=9A=84=E7=9B=B8=E5=85=B3=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/ExpertManage.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/api/controller/ExpertManage.php b/application/api/controller/ExpertManage.php index bfa6828..87992b2 100644 --- a/application/api/controller/ExpertManage.php +++ b/application/api/controller/ExpertManage.php @@ -81,10 +81,10 @@ class ExpertManage extends Base ->select(); foreach ($list as &$item) { - $item['fields'] = Db::name('expert_field') - ->where('expert_id', $item['expert_id']) - ->where('state', 0) - ->select(); +// $item['fields'] = Db::name('expert_field') +// ->where('expert_id', $item['expert_id']) +// ->where('state', 0) +// ->select(); $item['state_text'] = isset($this->stateMap[$item['state']]) ? $this->stateMap[$item['state']] : '未知'; $item['ctime_text'] = $item['ctime'] ? date('Y-m-d H:i:s', $item['ctime']) : ''; $item['ltime_text'] = $item['ltime'] ? date('Y-m-d H:i:s', $item['ltime']) : '';