From 81c42ba8785bb790e4284a4e352ec408464a172b Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Wed, 13 Sep 2023 14:41:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=95=86=E6=88=B7=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=E5=8F=91=E5=B8=83=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/store/merchant/MerchantIntention.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/controller/api/store/merchant/MerchantIntention.php b/app/controller/api/store/merchant/MerchantIntention.php index 4441a5dd..40c4f692 100644 --- a/app/controller/api/store/merchant/MerchantIntention.php +++ b/app/controller/api/store/merchant/MerchantIntention.php @@ -87,6 +87,10 @@ class MerchantIntention extends BaseController 'street' => $streetId, 'mer_intention_id' => $intention->mer_intention_id ]; + $res = $this->sendMerIntentionApply($sendData); + if (!$res) { + throw new ValidateException('申请商户入驻任务失败,请联系平台'); + } return app('json')->success('提交成功'); }