更新商户审核发布申请
This commit is contained in:
parent
61424f69fe
commit
280b08bcbb
@ -106,12 +106,12 @@ class MerchantIntention extends BaseController
|
|||||||
curl_setopt($ch, CURLOPT_HEADER, 0);
|
curl_setopt($ch, CURLOPT_HEADER, 0);
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
||||||
curl_setopt($ch, CURLOPT_POST, 1);
|
curl_setopt($ch, CURLOPT_POST, 1);
|
||||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
|
||||||
$data = curl_exec($ch);
|
$resData = curl_exec($ch);
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
$ok = false;
|
$ok = false;
|
||||||
if (!empty($data) && is_string($data)) {
|
if (!empty($resData) && is_string($resData)) {
|
||||||
Log::info("商户入驻申请反馈信息" . json_encode($data));
|
Log::info("商户入驻申请反馈信息" . $resData);
|
||||||
}
|
}
|
||||||
return $ok;
|
return $ok;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user