Просмотр исходного кода

奖金免管理费、提现免手续费

kevin_zhangl 3 лет назад
Родитель
Сommit
6c83ba82fc
1 измененных файлов с 8 добавлено и 1 удалено
  1. 8 1
      frontendApi/modules/v1/controllers/FinanceController.php

+ 8 - 1
frontendApi/modules/v1/controllers/FinanceController.php

@@ -211,7 +211,14 @@ class FinanceController extends BaseController {
 //        }
         $minAmount = Cache::getSystemConfig()['manualWithdrawMinAmount']['VALUE'] ?? 0;
         $fee = Cache::getSystemConfig()['withdrawFee']['VALUE'] ?? 0;
-        return static::notice(['userInfo' => $userInfo, 'isPact' => $regType['IS_PACT'], 'content' => $oneData['CONTENT'] ?? '', 'withdrawFee'=>$fee]);
+
+        return static::notice([
+            'userInfo' => $userInfo,
+            'isPact' => $regType['IS_PACT'] ?? '',
+            'content' => $oneData['CONTENT'] ?? '',
+            'withdrawFee'=>$fee,
+            'minAmount' => $minAmount,
+        ]);
     }
 
     /**