From ec1b605077e4e53ce8aaed8b9657760627a38e59 Mon Sep 17 00:00:00 2001 From: weiz Date: Tue, 7 Nov 2023 13:35:03 +0800 Subject: [PATCH] fixed --- app/common/controller/JunziqianController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/common/controller/JunziqianController.php b/app/common/controller/JunziqianController.php index 064ce2d0..63a68a45 100644 --- a/app/common/controller/JunziqianController.php +++ b/app/common/controller/JunziqianController.php @@ -11,6 +11,7 @@ use junziqian\sdk\util\RequestUtils; use junziqian\sdk\util\ShaUtils; use CURLFile; use think\facade\Db; +use think\facade\Log; class JunziqianController extends BaseLikeAdminController { @@ -257,11 +258,11 @@ class JunziqianController extends BaseLikeAdminController $request->fileType = 1; //合同上传方式 url $request->url = $data['url']; $request->notifyUrl = $notify . '?id=' . $id; - $request->needQifengSign = 1; //发起PING请求 // halt($request); $response = $requestUtils->doPost("/v2/sign/applySign", $request); + Log::write('三轮车签约:'.json_encode($response).'地址:'.$notify,'notice'); return $response; }