|
|
@@ -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,
|
|
|
+ ]);
|
|
|
}
|
|
|
|
|
|
/**
|