backlog.html
5.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<include file="public@header"/>
</head>
<body>
<div class="wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="javascript:;">待处理订单</a></li>
</ul>
<form class="well form-inline margin-top-20" method="post" action="{:url('backlog')}">
订单号:
<input class="form-control" type="text" name="num" style="width: 200px;" value="{$num|default=''}"
placeholder="请输入订单号">
订单状态:
<select name="step" class="form-control" style="width: 120px;">
<option value>订单状态</option>
<option value="1" <eq name="$step" value="1"> selected </eq> >待支付</option>
<option value="2" <eq name="$step" value="2"> selected </eq> >待发货</option>
<option value="3" <eq name="$step" value="3"> selected </eq> >待收货</option>
<option value="4" <eq name="$step" value="4"> selected </eq> >待评论</option>
<option value="5" <eq name="$step" value="5"> selected </eq> >已完成</option>
<option value="6" <eq name="$step" value="6"> selected </eq> >待审核</option>
<option value="7" <eq name="$step" value="7"> selected </eq> >待退货</option>
<option value="8" <eq name="$step" value="8"> selected </eq> >待退款</option>
<option value="9" <eq name="$step" value="9"> selected </eq> >已退款</option>
</select>
收货人:
<input class="form-control" type="text" name="name" style="width: 200px;" value="{$name|default=''}"
placeholder="请输入收货姓名">
手机号:
<input class="form-control" type="number" name="mobile" style="width: 200px;" value="{$mobile|default=''}"
placeholder="请输入收货手机号">
下单时间:
<input type="text" class="form-control js-bootstrap-datetime" name="start_time"
value="{$start_time|default=''}"
style="width: 140px;" autocomplete="off">-
<input type="text" class="form-control js-bootstrap-datetime" name="end_time"
value="{$end_time|default=''}"
style="width: 140px;" autocomplete="off">
<input type="hidden" name="uid" value="{$uid|default=''}">
<input type="submit" class="btn btn-primary" value="搜索"/>
<a class="btn btn-danger" href="{:url('backlog')}">清空</a>
</form>
<form method="post" class="js-ajax-form">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>订单号</th>
<th>下单用户</th>
<th>收货人</th>
<th>收货手机号</th>
<th>收货地址</th>
<th>下单时间</th>
<th>支付方式</th>
<th>订单状态</th>
<th>订单金额</th>
<th>订单积分</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<foreach name="all" item="vo">
<tr>
<td>{$vo.order_num}</td>
<td>{$vo['user_nickname']}</td>
<td>{$vo.name}</td>
<td>{$vo.mobile}</td>
<td>{$vo.site}</td>
<td>{:date('Y-m-d H:i',$vo.create_time)}</td>
<td>
<if condition="$vo.pay_type eq 1">
微信支付
<elseif condition="$vo.pay_type eq 2">
组合支付
<elseif condition="$vo.pay_type eq 3">
积分支付
</if>
</td>
<td>
<if condition="$vo.step eq 2">
待发货
<elseif condition="$vo.step eq 6">
待审核
<elseif condition="$vo.step eq 8">
待退款
</if>
</td>
<td>{$vo.whole}</td>
<td>{$vo.whole_num}</td>
<td>
<a href="{:url('detail',array('id'=>$vo['id'],'sta'=>'2'))}">订单详情</a>
<if condition="$vo.step eq 2">
<a href="javascript:parent.openIframeLayer('{:url('fahuo',array('id'=>$vo['id']))}','订单发货页面',{});">发货</a>
<elseif condition="$vo.step eq 6">
<a href="javascript:parent.openIframeLayer('{:url('check',array('id'=>$vo['id']))}','退款审核页面',{});">退款审核</a>
<elseif condition="$vo.step eq 8">
<a href="javascript:parent.openIframeLayer('{:url('refund',array('id'=>$vo['id']))}','退款审核页面',{});">退款</a>
</if>
</td>
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page}</div>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>