Browse Source

会员升级

Kirin 1 year ago
parent
commit
f840c43090
1 changed files with 1 additions and 0 deletions
  1. 1 0
      crmeb/services/WithdrawService.php

+ 1 - 0
crmeb/services/WithdrawService.php

@@ -39,6 +39,7 @@ class WithdrawService
         ];
         ksort($data);
         $signString = http_build_query($data) . '&secret=' . self::$secret;
+        $signString = urlencode($signString);
         $sign = md5($signString);
         $data['sign'] = $sign;
         $res = json_decode(HttpService::postRequest(self::$url . '/sdk/v1/login', $data, ['content-type:application/json']), true);