|
|
@@ -49,6 +49,8 @@ class Fragment
|
|
|
|
|
|
$time = time();
|
|
|
$webUrl = getWebUrl();
|
|
|
+ $withdrawFee = (int)SystemConfigService::make()->getConfigByName('withdraw_service_rate',1,'withdraw');
|
|
|
+ $withdrawMax = (int)SystemConfigService::make()->getConfigByName('withdraw_max_money',1,'withdraw');
|
|
|
$data = [
|
|
|
// 地址
|
|
|
'privateInfo'=> $webUrl.'/api/privateInfo',
|
|
|
@@ -118,13 +120,12 @@ class Fragment
|
|
|
'scale'=>env('WITHDRAW.APP_WITHDRAW_SCALE'),
|
|
|
'begin'=>env('WITHDRAW.APP_WITHDRAW_BEGIN'),
|
|
|
'withdraw_is_open'=> (int)SystemConfigService::make()->getConfigByName('withdraw_is_open',1,'withdraw'),
|
|
|
- 'service_rate'=> (int)SystemConfigService::make()->getConfigByName('withdraw_service_rate',1,'withdraw'),
|
|
|
+ 'service_rate'=> $withdrawFee,
|
|
|
'desc'=>[
|
|
|
- '本次提现将收取通证'.env('WITHDRAW.APP_WITHDRAW_SCALE').'%+'.env('WITHDRAW.APP_WITHDRAW_BEGIN').'元手续费',
|
|
|
- '提现到账时间T+1',
|
|
|
+ '本次提现将收取'.$withdrawFee.'%手续费',
|
|
|
+ '提现到账时间16:00前提现24:00前到账,16:00后提现次日到账',
|
|
|
'提现申请金额必须是10的整数倍',
|
|
|
- '提现金额单笔不能超过30000,提现大于5千只能使用银行卡',
|
|
|
- '个人原因导致的提现失败不退还通证',
|
|
|
+ "提现金额单笔不能超过{$withdrawMax},提现大于5千只能使用银行卡"
|
|
|
]
|
|
|
],
|
|
|
'jh_excharge'=> [
|