Browse Source

会员升级

Kirin 1 năm trước cách đây
mục cha
commit
7cf6df5796
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      crmeb/services/WithdrawService.php

+ 1 - 1
crmeb/services/WithdrawService.php

@@ -135,7 +135,7 @@ class WithdrawService
         $aes = new \Crypt_AES(CRYPT_AES_MODE_ECB);
         $aes->setKey(self::$aeskey);
         $data = $aes->decrypt(base64_decode($businessBodyString));
-        return base64_decode($data);
+        return json_decode(base64_decode($data), true);
     }