where('id', $user_id)->find(); $config = [ 'able_withdraw' => $user['earnings'], 'min_withdraw' => ConfigServer::get('withdraw', 'min_withdraw', 0),//最低提现金额; 'max_withdraw' => ConfigServer::get('withdraw', 'max_withdraw', 0),//最高提现金额; 'poundage_percent' => ConfigServer::get('withdraw', 'poundage', 0),//提现手续费; ]; $types = ConfigServer::get('withdraw', 'type', [1]); //提现方式,若未设置默认为提现方式为钱包 // 封装提现方式 $config['type'] = []; if($types) { foreach($types as $value) { $config['type'][] = [ 'name' => Withdraw::getTypeDesc($value), 'value' => $value ]; } } return $config; } //申请提现 public static function apply($user_id, $post) { Db::startTrans(); try{ //提现手续费 $poundage = 0; if ($post['type'] != Withdraw::TYPE_BALANCE){ $poundage_config = ConfigServer::get('withdraw', 'poundage', 0); $poundage = $post['money'] * $poundage_config / 100; } $data = [ 'sn' => createSn('withdraw_apply', 'sn'), 'user_id' => $user_id, 'type' => $post['type'], 'account' => $post['account'] ?? '', 'real_name' => $post['real_name'] ?? '', 'money' => $post['money'], 'left_money' => $post['money'] - $poundage, 'money_qr_code' => $post['money_qr_code'] ?? '', 'remark' => $post['remark'] ?? '', 'bank' => $post['bank'] ?? '', 'subbank' => $post['subbank'] ?? '', 'poundage' => $poundage, 'status' => 1, // 待提现 'create_time' => time(), ]; $withdraw_id = Db::name('withdraw_apply')->insertGetId($data); //提交申请后,扣减用户的佣金 $user = User::get($user_id); $user->earnings = ['dec', $post['money']]; $user->save(); //增加佣金变动记录 AccountLogLogic::AccountRecord( $user_id, $post['money'], 2, AccountLog::withdraw_dec_earnings, '', $withdraw_id, $data['sn'] ); Db::commit(); return self::dataSuccess('', ['id' => $withdraw_id]); }catch (Exception $e){ Db::rollback(); return self::dataError($e->getMessage()); } } //提现记录 public static function records($user_id, $get, $page, $size) { $count = Db::name('withdraw_apply') ->where(['user_id' => $user_id]) ->count(); $lists = Db::name('withdraw_apply') ->where(['user_id' => $user_id]) ->order('create_time desc') ->select(); foreach ($lists as &$item){ $item['desc'] = '提现至'.Withdraw::getTypeDesc($item['type']); $item['create_time'] = date('Y-m-d H:i:s', $item['create_time']); $item['status_text'] = Withdraw::getStatusDesc($item['status']); } $data = [ 'list' => $lists, 'page' => $page, 'size' => $size, 'count' => $count, 'more' => is_more($count, $page, $size) ]; return $data; } //提现详情 public static function info($id, $user_id) { $info = Db::name('withdraw_apply') ->field('status, sn, create_time, type, money, left_money, poundage') ->where(['id' => $id, 'user_id' => $user_id]) ->find(); if (!$info){ return []; } $info['create_time'] = date('Y-m-d H:i:s', $info['create_time']); $info['typeDesc'] = Withdraw::getTypeDesc($info['type']); $info['statusDesc'] = Withdraw::getStatusDesc($info['status']); return $info; } }