7 changed files with 431 additions and 2 deletions
-
129app/Http/Controllers/Admin/OrderController.php
-
2app/Http/Model/Order.php
-
2app/Http/Model/UserRecharge.php
-
133resources/views/admin/order/add.blade.php
-
133resources/views/admin/order/edit.blade.php
-
29resources/views/admin/order/index.blade.php
-
5routes/web.php
@ -0,0 +1,129 @@ |
|||||
|
<?php |
||||
|
namespace App\Http\Controllers\Admin; |
||||
|
|
||||
|
use App\Http\Controllers\Admin\CommonController; |
||||
|
use App\Http\Model\Order; |
||||
|
use DB; |
||||
|
|
||||
|
class OrderController extends CommonController |
||||
|
{ |
||||
|
public function __construct() |
||||
|
{ |
||||
|
parent::__construct(); |
||||
|
} |
||||
|
|
||||
|
public function index() |
||||
|
{ |
||||
|
$res = ''; |
||||
|
$where = function ($query) use ($res) { |
||||
|
if(isset($_REQUEST["keyword"])) |
||||
|
{ |
||||
|
$query->where('order_sn', 'like', '%'.$_REQUEST['keyword'].'%')->orWhere("name", "like", '%'.$_REQUEST['keyword'].'%'); |
||||
|
} |
||||
|
|
||||
|
//0或者不传表示全部,1待付款,2待发货,3待收货,4待评价(确认收货,交易成功),5退款/售后
|
||||
|
if(isset($_REQUEST["status"])) |
||||
|
{ |
||||
|
if($_REQUEST["status"] == 1) |
||||
|
{ |
||||
|
$query->where(array('order_status'=>0,'pay_status'=>0)); |
||||
|
} |
||||
|
elseif($_REQUEST["status"] == 2) |
||||
|
{ |
||||
|
$query->where(array('order_status'=>0,'shipping_status'=>0,'pay_status'=>1)); |
||||
|
} |
||||
|
elseif($_REQUEST["status"] == 3) |
||||
|
{ |
||||
|
$query->where(array('order_status'=>0,'refund_status'=>0,'shipping_status'=>1,'pay_status'=>1)); |
||||
|
} |
||||
|
elseif($_REQUEST["status"] == 4) |
||||
|
{ |
||||
|
$query->where(array('order_status'=>3,'refund_status'=>0,'shipping_status'=>2,'is_comment'=>0)); |
||||
|
} |
||||
|
elseif($_REQUEST["status"] == 5) |
||||
|
{ |
||||
|
$query->where(array('order_status'=>3,'refund_status'=>1)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
$query->where('is_delete', 0); //未删除
|
||||
|
}; |
||||
|
|
||||
|
$posts = parent::pageList('order', $where); |
||||
|
foreach($posts as $key=>$value) |
||||
|
{ |
||||
|
$order_status_arr = Order::getOrderStatusText(object_to_array($value, 1)); |
||||
|
$posts[$key]->order_status_text = $order_status_arr?$order_status_arr['text']:''; |
||||
|
$posts[$key]->order_status_num = $order_status_arr?$order_status_arr['num']:''; |
||||
|
} |
||||
|
|
||||
|
$data['posts'] = $posts; |
||||
|
|
||||
|
return view('admin.order.index', $data); |
||||
|
} |
||||
|
|
||||
|
public function doadd() |
||||
|
{ |
||||
|
$_POST['add_time'] = time();//更新时间
|
||||
|
$_POST['click'] = rand(200,500);//点击
|
||||
|
|
||||
|
unset($_POST["_token"]); |
||||
|
if(isset($_POST['editorValue'])){unset($_POST['editorValue']);} |
||||
|
|
||||
|
if(Order::insert($_POST)) |
||||
|
{ |
||||
|
success_jump('添加成功!', route('admin_order')); |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
error_jump('添加失败!请修改后重新添加'); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public function add() |
||||
|
{ |
||||
|
return view('admin.order.add'); |
||||
|
} |
||||
|
|
||||
|
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'] = Order::where('id', $id)->first(); |
||||
|
|
||||
|
return view('admin.order.edit', $data); |
||||
|
} |
||||
|
|
||||
|
public function doedit() |
||||
|
{ |
||||
|
if(!empty($_POST["id"])){$id = $_POST["id"];unset($_POST["id"]);}else {$id="";exit;} |
||||
|
|
||||
|
unset($_POST["_token"]); |
||||
|
if(isset($_POST['editorValue'])){unset($_POST['editorValue']);} |
||||
|
|
||||
|
if(Order::where('id', $id)->update($_POST)) |
||||
|
{ |
||||
|
success_jump('修改成功!', route('admin_order')); |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
error_jump('修改失败!请修改后重新添加'); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public function del() |
||||
|
{ |
||||
|
if(!empty($_GET["id"])){$id = $_GET["id"];}else{error_jump("删除失败!请重新提交");} //if(preg_match('/[0-9]*/',$id)){}else{exit;}
|
||||
|
|
||||
|
if(Order::whereIn("id", explode(',', $id))->update(array('is_delete'=>1))) |
||||
|
{ |
||||
|
success_jump('删除成功'); |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
error_jump("删除失败!请重新提交"); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,133 @@ |
|||||
|
@extends('admin.layouts.app') |
||||
|
@section('title', '品牌添加') |
||||
|
|
||||
|
@section('content') |
||||
|
<h5 class="sub-header"><a href="/fladmin/goodsbrand">品牌列表</a> > 品牌添加</h5> |
||||
|
|
||||
|
<form id="addarc" method="post" action="/fladmin/goodsbrand/doadd" role="form" enctype="multipart/form-data" class="table-responsive">{{ csrf_field() }} |
||||
|
<table class="table table-striped table-bordered"> |
||||
|
<tbody> |
||||
|
<tr> |
||||
|
<td align="right">名称:</td> |
||||
|
<td><input name="title" type="text" id="title" value="" class="required" style="width:60%" placeholder="在此输入标题"></td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td align="right">是否显示:</td> |
||||
|
<td> |
||||
|
<input type="radio" value='0' name="status" checked /> 是 |
||||
|
<input type="radio" value='1' name="status" /> 否 |
||||
|
</td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td align="right">排序:</td> |
||||
|
<td> |
||||
|
<input name="listorder" type="text" id="listorder" value="50" size="3" /> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td align="right" style="vertical-align:middle;">缩略图:</td> |
||||
|
<td style="vertical-align:middle;"><button type="button" onclick="upImage();">选择图片</button> <input name="litpic" type="text" id="litpic" value="" style="width:40%"> <img style="margin-left:20px;display:none;" src="" width="120" height="80" id="picview"></td> |
||||
|
</tr> |
||||
|
<script type="text/javascript"> |
||||
|
var _editor; |
||||
|
$(function() { |
||||
|
//重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
|
||||
|
_editor = UE.getEditor('ueditorimg'); |
||||
|
_editor.ready(function () { |
||||
|
//设置编辑器不可用
|
||||
|
_editor.setDisabled('insertimage'); |
||||
|
//隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
|
||||
|
_editor.hide(); |
||||
|
//侦听图片上传
|
||||
|
_editor.addListener('beforeInsertImage', function (t, arg) { |
||||
|
//将地址赋值给相应的input,只取第一张图片的路径
|
||||
|
$('#litpic').val(arg[0].src); |
||||
|
//图片预览
|
||||
|
$('#picview').attr("src",arg[0].src).css("display","inline-block"); |
||||
|
}) |
||||
|
}); |
||||
|
}); |
||||
|
//弹出图片上传的对话框
|
||||
|
function upImage() |
||||
|
{ |
||||
|
var myImage = _editor.getDialog("insertimage"); |
||||
|
myImage.render(); |
||||
|
myImage.open(); |
||||
|
} |
||||
|
</script> |
||||
|
<script type="text/plain" id="ueditorimg"></script> |
||||
|
<tr> |
||||
|
<td align="right" style="vertical-align:middle;">封面:</td> |
||||
|
<td style="vertical-align:middle;"><button type="button" onclick="upImage2();">选择图片</button> <input name="cover_img" type="text" id="cover_img" value="" style="width:40%"> <img style="margin-left:20px;display:none;" src="" width="120" height="80" id="picview2"></td> |
||||
|
</tr> |
||||
|
<script type="text/javascript"> |
||||
|
var _editor2; |
||||
|
$(function() { |
||||
|
//重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
|
||||
|
_editor2 = UE.getEditor('ueditorimg2'); |
||||
|
_editor2.ready(function () { |
||||
|
//设置编辑器不可用
|
||||
|
_editor2.setDisabled('insertimage'); |
||||
|
//隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
|
||||
|
_editor2.hide(); |
||||
|
//侦听图片上传
|
||||
|
_editor2.addListener('beforeInsertImage', function (t, arg) { |
||||
|
//将地址赋值给相应的input,只取第一张图片的路径
|
||||
|
$('#cover_img').val(arg[0].src); |
||||
|
//图片预览
|
||||
|
$('#picview2').attr("src",arg[0].src).css("display","inline-block"); |
||||
|
}) |
||||
|
}); |
||||
|
}); |
||||
|
//弹出图片上传的对话框
|
||||
|
function upImage2() |
||||
|
{ |
||||
|
var myImage = _editor2.getDialog("insertimage"); |
||||
|
myImage.render(); |
||||
|
myImage.open(); |
||||
|
} |
||||
|
</script> |
||||
|
<script type="text/plain" id="ueditorimg2"></script> |
||||
|
<tr> |
||||
|
<td colspan="2"><strong>页面内容:</strong></td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td colspan="2"> |
||||
|
<!-- 加载编辑器的容器 --><script id="container" name="content" type="text/plain"></script> |
||||
|
<!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script> |
||||
|
<!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.min.js"></script> |
||||
|
<!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td colspan="2"><button type="submit" class="btn btn-success" value="Submit">保存(Submit)</button> <button type="reset" class="btn btn-default" value="Reset">重置(Reset)</button><input type="hidden"></input></td> |
||||
|
</tr> |
||||
|
</tbody></table></form><!-- 表单结束 --> |
||||
|
<script> |
||||
|
$(function(){ |
||||
|
$(".required").blur(function(){ |
||||
|
var $parent = $(this).parent(); |
||||
|
$parent.find(".formtips").remove(); |
||||
|
if(this.value=="") |
||||
|
{ |
||||
|
$parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>'); |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
$parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>'); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
//重置
|
||||
|
$('#addarc input[type="reset"]').click(function(){ |
||||
|
$(".formtips").remove(); |
||||
|
}); |
||||
|
|
||||
|
$("#addarc").submit(function(){ |
||||
|
$(".required").trigger('blur'); |
||||
|
var numError = $('#addarc .onError').length; |
||||
|
|
||||
|
if(numError){return false;} |
||||
|
}); |
||||
|
}); |
||||
|
</script> |
||||
|
@endsection |
@ -0,0 +1,133 @@ |
|||||
|
@extends('admin.layouts.app') |
||||
|
@section('title', '品牌修改') |
||||
|
|
||||
|
@section('content') |
||||
|
<h5 class="sub-header"><a href="/fladmin/goodsbrand">品牌列表</a> > 品牌修改</h5> |
||||
|
|
||||
|
<form id="addarc" method="post" action="/fladmin/goodsbrand/doedit" role="form" enctype="multipart/form-data" class="table-responsive">{{ csrf_field() }} |
||||
|
<table class="table table-striped table-bordered"> |
||||
|
<tbody> |
||||
|
<tr> |
||||
|
<td align="right">名称:</td> |
||||
|
<td><input name="title" type="text" id="title" value="<?php echo $post["title"]; ?>" class="required" style="width:60%" placeholder="在此输入标题"> <input style="display:none;" type="text" name="id" id="id" value="<?php echo $id; ?>"></td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td align="right">是否显示:</td> |
||||
|
<td> |
||||
|
<input type="radio" value='0' name="status" <?php if(isset($post['status']) && $post['status']==0){echo 'checked';} ?> /> 是
|
||||
|
<input type="radio" value='1' name="status" <?php if(isset($post['status']) && $post['status']==1){echo 'checked';} ?> /> 否
|
||||
|
</td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td align="right">排序:</td> |
||||
|
<td> |
||||
|
<input name="listorder" type="text" id="listorder" value="<?php echo $post['listorder']; ?>" size="3" /> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td align="right" style="vertical-align:middle;">缩略图:</td> |
||||
|
<td style="vertical-align:middle;"><button type="button" onclick="upImage();">选择图片</button> <input name="litpic" type="text" id="litpic" value="<?php echo $post["litpic"]; ?>" style="width:40%"> <img style="margin-left:20px;<?php if(empty($post["litpic"]) || !imgmatch($post["litpic"])){ echo "display:none;"; } ?>" src="<?php if(imgmatch($post["litpic"])){echo $post["litpic"];} ?>" width="120" height="80" id="picview" name="picview"></td> |
||||
|
</tr> |
||||
|
<script type="text/javascript"> |
||||
|
var _editor; |
||||
|
$(function() { |
||||
|
//重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
|
||||
|
_editor = UE.getEditor('ueditorimg'); |
||||
|
_editor.ready(function () { |
||||
|
//设置编辑器不可用
|
||||
|
_editor.setDisabled('insertimage'); |
||||
|
//隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
|
||||
|
_editor.hide(); |
||||
|
//侦听图片上传
|
||||
|
_editor.addListener('beforeInsertImage', function (t, arg) { |
||||
|
//将地址赋值给相应的input,只取第一张图片的路径
|
||||
|
$('#litpic').val(arg[0].src); |
||||
|
//图片预览
|
||||
|
$('#picview').attr("src",arg[0].src).css("display","inline-block"); |
||||
|
}) |
||||
|
}); |
||||
|
}); |
||||
|
//弹出图片上传的对话框
|
||||
|
function upImage() |
||||
|
{ |
||||
|
var myImage = _editor.getDialog("insertimage"); |
||||
|
myImage.render(); |
||||
|
myImage.open(); |
||||
|
} |
||||
|
</script> |
||||
|
<script type="text/plain" id="ueditorimg"></script> |
||||
|
<tr> |
||||
|
<td align="right" style="vertical-align:middle;">封面:</td> |
||||
|
<td style="vertical-align:middle;"><button type="button" onclick="upImage2();">选择图片</button> <input name="cover_img" type="text" id="cover_img" value="<?php echo $post["cover_img"]; ?>" style="width:40%"> <img style="margin-left:20px;<?php if(empty($post["cover_img"]) || !imgmatch($post["cover_img"])){ echo "display:none;"; } ?>" src="<?php if(imgmatch($post["cover_img"])){echo $post["cover_img"];} ?>" width="120" height="80" id="picview2"></td> |
||||
|
</tr> |
||||
|
<script type="text/javascript"> |
||||
|
var _editor2; |
||||
|
$(function() { |
||||
|
//重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
|
||||
|
_editor2 = UE.getEditor('ueditorimg2'); |
||||
|
_editor2.ready(function () { |
||||
|
//设置编辑器不可用
|
||||
|
_editor2.setDisabled('insertimage'); |
||||
|
//隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
|
||||
|
_editor2.hide(); |
||||
|
//侦听图片上传
|
||||
|
_editor2.addListener('beforeInsertImage', function (t, arg) { |
||||
|
//将地址赋值给相应的input,只取第一张图片的路径
|
||||
|
$('#cover_img').val(arg[0].src); |
||||
|
//图片预览
|
||||
|
$('#picview2').attr("src",arg[0].src).css("display","inline-block"); |
||||
|
}) |
||||
|
}); |
||||
|
}); |
||||
|
//弹出图片上传的对话框
|
||||
|
function upImage2() |
||||
|
{ |
||||
|
var myImage = _editor2.getDialog("insertimage"); |
||||
|
myImage.render(); |
||||
|
myImage.open(); |
||||
|
} |
||||
|
</script> |
||||
|
<script type="text/plain" id="ueditorimg2"></script> |
||||
|
<tr> |
||||
|
<td colspan="2"><strong>页面内容:</strong></td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td colspan="2"> |
||||
|
<!-- 加载编辑器的容器 --><script id="container" name="content" type="text/plain"><?php echo $post["content"]; ?></script>
|
||||
|
<!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script> |
||||
|
<!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.min.js"></script> |
||||
|
<!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td colspan="2"><button type="submit" class="btn btn-success" value="Submit">保存(Submit)</button> <button type="reset" class="btn btn-default" value="Reset">重置(Reset)</button><input type="hidden"></input></td> |
||||
|
</tr> |
||||
|
</tbody></table></form><!-- 表单结束 --> |
||||
|
<script> |
||||
|
$(function(){ |
||||
|
$(".required").blur(function(){ |
||||
|
var $parent = $(this).parent(); |
||||
|
$parent.find(".formtips").remove(); |
||||
|
if(this.value=="") |
||||
|
{ |
||||
|
$parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>'); |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
$parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>'); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
//重置
|
||||
|
$('#addarc input[type="reset"]').click(function(){ |
||||
|
$(".formtips").remove(); |
||||
|
}); |
||||
|
|
||||
|
$("#addarc").submit(function(){ |
||||
|
$(".required").trigger('blur'); |
||||
|
var numError = $('#addarc .onError').length; |
||||
|
|
||||
|
if(numError){return false;} |
||||
|
}); |
||||
|
}); |
||||
|
</script> |
||||
|
@endsection |
@ -0,0 +1,29 @@ |
|||||
|
@extends('admin.layouts.app') |
||||
|
@section('title', '订单列表') |
||||
|
|
||||
|
@section('content') |
||||
|
<h2 class="sub-header">订单管理</h2> |
||||
|
|
||||
|
<form name="listarc"><div class="table-responsive"><table class="table table-striped table-hover"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<th>编号-SN</th> |
||||
|
<th>名称</th> |
||||
|
<th>是否显示</th> |
||||
|
<th>更新时间</th> |
||||
|
<th>管理</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<?php if($posts){foreach($posts as $row){ ?>
|
||||
|
<tr> |
||||
|
<td><?php echo $row->id.'-'.$row->order_sn; ?></td>
|
||||
|
<td><a href="<?php echo route('admin_goodsbrand_edit',array('id'=>$row->id)); ?>"><?php echo $row->add_time; ?></a></td>
|
||||
|
<td><?php if($row['status']==0){echo "是";}else{echo "<font color=red>否</font>";} ?></td>
|
||||
|
<td><?php echo date('Y-m-d',$row->add_time); ?></td>
|
||||
|
<td><a href="<?php echo route('admin_goodsbrand_edit',array('id'=>$row->id)); ?>">修改</a> <a onclick="delconfirm('<?php echo route('admin_goodsbrand_del',array('id'=>$row->id)); ?>')" href="javascript:;">删除</a></td> |
||||
|
</tr> |
||||
|
<?php }} ?>
|
||||
|
</tbody> |
||||
|
</table></div><!-- 表格结束 --></form><!-- 表单结束 --> |
||||
|
@endsection |
Write
Preview
Loading…
Cancel
Save
Reference in new issue