Sfoglia il codice sorgente

feat: 会员端转账只有报单中心可以

zhangl 1 anno fa
parent
commit
f9502dc9fe
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      common/models/forms/TransferForm.php

+ 1 - 1
common/models/forms/TransferForm.php

@@ -126,7 +126,7 @@ class TransferForm extends Model {
 
         // 转账是否已开启
         $transferSwitch = Cache::getSystemConfig()['transferSwitch'] ?? '';
-        LoggerTool::info('transferSwitch . ' . $transferSwitch);
+        LoggerTool::info('transferSwitch . ' . json_encode($transferSwitch));
         if ($transferSwitch != 1) {
             // 转账未开启,判断是否报单中心. 报单中心可开启转账
             $isDec = \frontendApi\modules\v1\models\User::getEnCodeInfo($fromUserId)['IS_DEC'];