request->param('type', 'money'); $tab = $this->request->param('tab', 'all'); $list_rows = $this->request->param('list_rows', 10); $date = $this->request->param('date/a'); $user = auth_user(); $where['user_id'] = $user->id; switch ($tab) { case 'income': $where['amount'] = ['>', 0]; break; case 'expense': $where['amount'] = ['<', 0]; break; } $income = UserWalletLogModel::where('user_id', $user->id)->{$type}()->where('amount', '>', 0)->whereTime('createtime', 'between', $date)->sum('amount'); $expense = UserWalletLogModel::where('user_id', $user->id)->{$type}()->where('amount', '<', 0)->whereTime('createtime', 'between', $date)->sum('amount'); $logs = UserWalletLogModel::where($where)->{$type}()->whereTime('createtime', 'between', $date)->order('createtime', 'desc')->paginate($list_rows); $this->success('获取成功', ['list' => $logs, 'income' => $income, 'expense' => $expense]); } /** * 用户充值积分 */ public function recharge() { $params = $this->request->only(['type', 'amount']); if (!in_array($params['type'], ['money', 'score'])) { $this->error('参数错误'); } $user = auth_user(); $user_id = $user->id; $result = Db::transaction(function () use ($params, $user_id) { return WalletService::change($user_id, $params['type'], $params['amount'], 'admin_recharge', [], '积分充值'); }); if ($result) { $this->success('充值成功'); } $this->error('充值失败'); } /** * 用户转让积分 */ public function exchange() { $params = $this->request->only(['type', 'exchange_amount', 'exchange_phone', 'code']); if (!in_array($params['type'], ['money', 'score'])) { $this->error('参数错误'); } $user = auth_user(); $user_id = $user->id; if (!Sms::check($params['exchange_phone'], $params['code'], 'mobilelogin')) { $this->error(__('Captcha is incorrect')); } $exchange_user = UserModel::getByMobile($params['exchange_phone']); if ($user) { if ($user->status != 'normal') { $this->error(__('Account is locked')); } }else { $this->error('该手机号暂未注册'); } $exchange_user_id = $exchange_user->id; $result = Db::transaction(function () use ($params, $exchange_user_id, $user_id) { WalletService::change($user_id, $params['type'], -$params['amount'], 'user_exchange', [], '积分转让'); return WalletService::change($exchange_user_id, $params['type'], $params['amount'], 'user_exchange', [], '积分转让'); }); if ($result) { $this->success('转让成功'); } $this->error('转让失败'); } }