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.
114 lines
2.9 KiB
114 lines
2.9 KiB
<?php
|
|
namespace App\Http\Controllers\Admin;
|
|
use Illuminate\Support\Facades\DB;
|
|
use App\Common\Helper;
|
|
use App\Common\ReturnData;
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Logic\SlideLogic;
|
|
use App\Http\Model\Slide;
|
|
|
|
class SlideController extends BaseController
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function getLogic()
|
|
{
|
|
return new SlideLogic();
|
|
}
|
|
|
|
public function index(Request $request)
|
|
{
|
|
$res = '';
|
|
$where = function ($query) use ($res) {
|
|
if(isset($_REQUEST["keyword"]))
|
|
{
|
|
$query->where('title', 'like', '%'.$_REQUEST['keyword'].'%');
|
|
}
|
|
|
|
if(isset($_REQUEST["group_id"]))
|
|
{
|
|
$query->where('group_id', $_REQUEST["group_id"]);
|
|
}
|
|
|
|
if(isset($_REQUEST["is_show"]))
|
|
{
|
|
$query->where('is_show', $_REQUEST["is_show"]);
|
|
}
|
|
|
|
if(isset($_REQUEST["type"]))
|
|
{
|
|
$query->where('type', $_REQUEST["type"]);
|
|
}
|
|
};
|
|
|
|
$posts = $this->getLogic()->getPaginate($where, array('listorder', 'asc'));
|
|
$data['posts'] = $posts;
|
|
return view('admin.slide.index', $data);
|
|
}
|
|
|
|
public function add(Request $request)
|
|
{
|
|
return view('admin.slide.add');
|
|
}
|
|
|
|
public function doadd(Request $request)
|
|
{
|
|
if(Helper::isPostRequest())
|
|
{
|
|
$res = $this->getLogic()->add($_POST);
|
|
if($res['code'] == ReturnData::SUCCESS)
|
|
{
|
|
success_jump($res['msg'], route('admin_slide'));
|
|
}
|
|
|
|
error_jump($res['msg']);
|
|
}
|
|
}
|
|
|
|
public function edit(Request $request)
|
|
{
|
|
if(!checkIsNumber($request->input('id',null))){error_jump('参数错误');}
|
|
$id = $request->input('id');
|
|
|
|
$data['id'] = $where['id'] = $id;
|
|
$data['post'] = $this->getLogic()->getOne($where);
|
|
|
|
return view('admin.slide.edit', $data);
|
|
}
|
|
|
|
public function doedit(Request $request)
|
|
{
|
|
if(!checkIsNumber($request->input('id',null))){error_jump('参数错误');}
|
|
$id = $request->input('id');
|
|
|
|
if(Helper::isPostRequest())
|
|
{
|
|
$where['id'] = $id;
|
|
$res = $this->getLogic()->edit($_POST, $where);
|
|
if($res['code'] == ReturnData::SUCCESS)
|
|
{
|
|
success_jump($res['msg'], route('admin_slide'));
|
|
}
|
|
|
|
error_jump($res['msg']);
|
|
}
|
|
}
|
|
|
|
public function del(Request $request)
|
|
{
|
|
if(!checkIsNumber($request->input('id',null))){error_jump('参数错误');}
|
|
$id = $request->input('id');
|
|
|
|
$where['id'] = $id;
|
|
$res = $this->getLogic()->del($where);
|
|
if($res['code'] == ReturnData::SUCCESS)
|
|
{
|
|
success_jump($res['msg']);
|
|
}
|
|
|
|
error_jump($res['msg']);
|
|
}
|
|
}
|