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('提交成功'); }