|
|
@@ -82,7 +82,9 @@ class CashClass extends BaseClass
|
|
|
}
|
|
|
$miniCashAmount = dict::getDict('miniCashAmount');
|
|
|
if (bccomp($miniCashAmount, $txBalance) == 1) {
|
|
|
- util::fail("满{$miniCashAmount}元可提现");
|
|
|
+ if (getenv('YII_ENV') == 'production') {
|
|
|
+ util::fail("满{$miniCashAmount}元可提现");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//可提现余额减少,总余额减少,冻结金额增加
|