From 068bd0a14036be8a49f2f3098ad470c55a481a60 Mon Sep 17 00:00:00 2001 From: oldHome Date: Fri, 27 Jun 2025 20:31:48 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E5=85=B0=E5=B7=9E=E5=AD=A6=E6=A0=A1?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=20=E7=AB=99=E7=82=B9=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E5=9C=B0=E5=9D=97=E7=AE=A1=E7=90=86=20=E7=94=A8photo=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E4=BB=A3=E6=9B=BF=E9=9D=A2=E7=A7=AF=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=20=20=EF=BC=88=E4=B8=B4=E6=97=B6=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FlyCube/MpApi/Controller/PlaneController.class.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/FlyCube/MpApi/Controller/PlaneController.class.php b/FlyCube/MpApi/Controller/PlaneController.class.php index f3cb56a..13b67fe 100644 --- a/FlyCube/MpApi/Controller/PlaneController.class.php +++ b/FlyCube/MpApi/Controller/PlaneController.class.php @@ -350,6 +350,11 @@ class PlaneController extends PublicController } else { $data['describe'] = null; } + if ($_REQUEST['photo']) { //为兰州学校项目改 后期要用需要修改 + $data['photo'] = $_REQUEST['photo']; + } else { + $data['photo'] = null; + } if ($id = $rsDb->data($data)->add()) { //创建二维码 if ($token = $this->getAccessToken()) { @@ -406,6 +411,11 @@ class PlaneController extends PublicController } else { $data['describe'] = null; } + if ($_REQUEST['photo']) { //为兰州学校项目改 后期要用需要修改 + $data['photo'] = $_REQUEST['photo']; + } else { + $data['photo'] = null; + } $id = $_REQUEST['id']; $where['id'] = $id; $where['shop_id'] = $_REQUEST['shop_id'];