|
|
@@ -566,7 +566,7 @@ class MemberService extends BaseService
|
|
|
if (($withdrawTotal + floatval($money)) >= $maxWithdrawMoney) {
|
|
|
DB::rollBack();
|
|
|
$this->error = 2026; // 可提金额超出
|
|
|
- $this->errorData = ['money' => ($maxWithdrawMoney - $withdrawTotal)];
|
|
|
+ $this->errorData = ['money' => moneyFormat($maxWithdrawMoney - $withdrawTotal,2)];
|
|
|
return false;
|
|
|
}
|
|
|
|