From 15715e717c88f09a1875378955761e13cc45d539 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 17 Nov 2023 13:51:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/store/merchant/MerchantIntention.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/controller/api/store/merchant/MerchantIntention.php b/app/controller/api/store/merchant/MerchantIntention.php index 11f92c99..8b84a2a4 100644 --- a/app/controller/api/store/merchant/MerchantIntention.php +++ b/app/controller/api/store/merchant/MerchantIntention.php @@ -203,7 +203,9 @@ class MerchantIntention extends BaseController 'bank_back' => $data['bank_back'] ?? '', 'cardno_front' => $data['cardno_front'] ?? '', 'cardno_back' => $data['cardno_back'] ?? '', - 'mer_intention_id' => $intentionId + 'mer_intention_id' => $intentionId, + 'type_id'=>$data['mer_type_id']??'' + ]; $postUrl = env('TASK_WORKER_HOST_URL') . '/adminapi/company/createShopMerchant'; $res = $this->sendMerIntentionApply($sendData, $postUrl); @@ -297,7 +299,9 @@ class MerchantIntention extends BaseController 'area' => $data['area_id'] ?? '', 'street' => $data['street_id'] ?? '', 'address' => $data['address'] ?? '', - 'mer_intention_id' => $id + 'mer_intention_id' => $id, + 'type_id'=>$data['mer_type_id']??'' + ]; $postUrl = env('TASK_WORKER_HOST_URL') . '/adminapi/company/createShopMerchant'; $res = $this->sendMerIntentionApply($sendData, $postUrl);