You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.8 KiB
92 lines
2.8 KiB
<?php
|
|
namespace App\Http\Controllers\Admin;
|
|
use Illuminate\Support\Facades\DB;
|
|
use App\Common\ReturnData;
|
|
use App\Common\Helper;
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Logic\UserWithdrawLogic;
|
|
use App\Http\Model\UserWithdraw;
|
|
|
|
class UserWithdrawController extends BaseController
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getLogic()
|
|
{
|
|
return new UserWithdrawLogic();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$where['delete_time'] = 0;
|
|
$posts = $this->getLogic()->getPaginate($where, array('id', 'desc'));
|
|
|
|
$data['posts'] = $posts;
|
|
return view('admin.UserWithdraw.index', $data);
|
|
}
|
|
|
|
public function edit()
|
|
{
|
|
if(!empty($_GET["id"])){$id = $_GET["id"];}else{$id="";}
|
|
if(preg_match('/[0-9]*/',$id)){}else{exit;}
|
|
|
|
$data['id'] = $id;
|
|
$data['post'] = object_to_array(DB::table('user_withdraw')->where('id', $id)->first(), 1);
|
|
|
|
return view('admin.UserWithdraw.edit', $data);
|
|
}
|
|
|
|
public function doedit()
|
|
{
|
|
if(!empty($_POST["id"])){$id = $_POST["id"];unset($_POST["id"]);}else {$id="";exit;}
|
|
|
|
unset($_POST["_token"]);
|
|
if(DB::table('user_withdraw')->where('id', $id)->update($_POST))
|
|
{
|
|
success_jump('修改成功', route('admin_user'));
|
|
}
|
|
else
|
|
{
|
|
error_jump('修改失败');
|
|
}
|
|
}
|
|
|
|
public function changeStatus()
|
|
{
|
|
if(!empty($_POST["id"])){$id = $_POST["id"];unset($_POST["id"]);}else {$id="";exit;}
|
|
|
|
unset($_POST["_token"]);
|
|
|
|
if(!isset($_POST["type"])){return ReturnData::create(ReturnData::PARAMS_ERROR);}
|
|
|
|
$user_withdraw = DB::table('user_withdraw')->where(['id'=>$id,'status'=>0])->first();
|
|
if(!$user_withdraw){return ReturnData::create(ReturnData::PARAMS_ERROR);}
|
|
|
|
//0拒绝,1成功
|
|
if($_POST["type"]==0)
|
|
{
|
|
$data['status'] = 4;
|
|
|
|
//增加用户余额
|
|
DB::table('user')->where(array('id'=>$user_withdraw->user_id))->increment('money', $user_withdraw->money);
|
|
//添加用户余额记录
|
|
DB::table('user_money')->insert(array('user_id'=>$user_withdraw->user_id,'type'=>0,'money'=>$user_withdraw->money,'des'=>'提现失败-返余额','user_money'=>DB::table('user')->where(array('id'=>$user_withdraw->user_id))->value('money'),'add_time'=>time()));
|
|
}
|
|
elseif($_POST["type"]==1)
|
|
{
|
|
$data['status'] = 2;
|
|
}
|
|
|
|
if(isset($data))
|
|
{
|
|
$res = DB::table('user_withdraw')->where('id', $id)->update($data);
|
|
|
|
if(!$res){return ReturnData::create(ReturnData::SYSTEM_FAIL);}
|
|
}
|
|
|
|
return ReturnData::create(ReturnData::SUCCESS);
|
|
}
|
|
}
|