@@ -228,7 +228,7 @@ class AccountLogService extends BaseService
$cacheKey = "caches:accounts:count_date_{$userId}_{$coinType}_{$userType}_{$dateType}";
$data = RedisService::get($cacheKey);
if($data){
- return $data;
+ return moneyFormat($data, 2);
}
$data = $this->model->where(['user_id'=> $userId,'coin_type'=> $coinType,'user_type'=>$userType,'status'=>1,'mark'=>1])