From 963e6c9da671d7c164db4362074707b29bc49eb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=92=8A?= Date: Tue, 2 Dec 2025 16:51:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=EF=BC=9A-=E6=AD=8C=E6=89=8B?= =?UTF-8?q?=E8=AE=A4=E8=AF=81=E6=88=90=E5=8A=9F=E5=90=8E=EF=BC=8C=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E6=8E=A8=E9=80=81=E6=B6=88=E6=81=AF=E6=8F=90=E9=86=92?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=B7=B2=E8=AE=A4=E8=AF=81=E6=88=90=E5=8A=9F?= =?UTF-8?q?=20=EF=BC=8832=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/adminapi/controller/SingerSong.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/adminapi/controller/SingerSong.php b/application/adminapi/controller/SingerSong.php index effabb4..2491539 100644 --- a/application/adminapi/controller/SingerSong.php +++ b/application/adminapi/controller/SingerSong.php @@ -81,11 +81,11 @@ class SingerSong extends adminApi }elseif($data['status'] ==2){ $deal_content = '审核拒绝'; } - if(!empty($remark)){ + if(!empty($data['remark'])){ $deal_content .= ',原因:'.$data['remark']; } db::name('system_message')->insert([ - 'title' => '房间审核结果', + 'title' => '歌手认证审核结果', 'content' => '您的歌手认证申请 '.$deal_content, 'type' => 1, 'admin_id' => Session::get('admin_id'),