2016-01-24 11:54:16 +08:00
|
|
|
<include file="Public/header" title="订单管理" />
|
|
|
|
|
|
|
|
|
|
<div id="page-wrapper">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
<form action="{:U('info/index')}" method="post">
|
|
|
|
|
<div class="form-group input-group">
|
|
|
|
|
<input type="text" class="form-control" name="key" placeholder="输入用户名或真实姓名搜索">
|
|
|
|
|
<span class="input-group-btn">
|
|
|
|
|
<button class="btn btn-default" type="button"><i class="fa fa-search"></i></button>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<table class="table table-hover table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>编号</th>
|
|
|
|
|
<th>用户名</th>
|
|
|
|
|
<th>真实姓名</th>
|
|
|
|
|
<th>住址</th>
|
|
|
|
|
<th>联系方式</th>
|
|
|
|
|
<th>邮编</th>
|
|
|
|
|
<th>状态</th>
|
|
|
|
|
<th>操作</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<foreach name="model" item="v">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{$v.id}</td>
|
|
|
|
|
<td>{$v.username}</td>
|
|
|
|
|
<td>{$v.realname}</td>
|
|
|
|
|
<td>{$v.location}</td>
|
|
|
|
|
<td>{$v.tel}</td>
|
|
|
|
|
<td>{$v.zipcode}</td>
|
|
|
|
|
<td><if condition="$v.finish eq 0"><span class="label label-info">未处理</span>
|
2016-12-02 12:24:27 +08:00
|
|
|
<elseif condition="$v.finish eq 1" /><span class="label label-default">已发货</span>
|
2016-01-24 11:54:16 +08:00
|
|
|
</if></td>
|
2016-12-02 12:24:27 +08:00
|
|
|
<td><a href="{:U('order/update?id=')}{$v.id}" target="_Blank">查看</a> | <a href="{:U('order/delete?id=')}{$v.id}" style="color:red;" onclick="javascript:return del('您真的确定要删除吗?\n\n删除后将不能恢复!');">删除</a></td>
|
2016-01-24 11:54:16 +08:00
|
|
|
</tr>
|
|
|
|
|
</foreach>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
{$page}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<include file="Public/footer" />
|