@@ -59,7 +59,9 @@ class WithdrawService
$token = self::$token;
$res = json_decode(self::do_request(self::$url . $url, compact('data', 'token'), ['content-type:application/json'], true, true), true);
if ($res['code'] == 200) {
+ var_dump($res);
$res['data'] = self::decode($res['data']);
+ $res['data'] = base64_decode($res['data']);
return $res;
} else {
throw new ApiException($res['msg'] ?? '处理失败');