detail.html
7.77 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<include file="public/layout" />
<style>
.ncm-goods-gift {
text-align: left;
}
.ncm-goods-gift ul {
display: inline-block;
font-size: 0;
vertical-align: middle;
}
.ncm-goods-gift li {
display: inline-block;
letter-spacing: normal;
margin-right: 4px;
vertical-align: top;
word-spacing: normal;
}
.ncm-goods-gift li a {
background-color: #fff;
display: table-cell;
height: 30px;
line-height: 0;
overflow: hidden;
text-align: center;
vertical-align: middle;
width: 30px;
}
.ncm-goods-gift li a img {
max-height: 30px;
max-width: 30px;
}
a.green{
background: #fff none repeat scroll 0 0;
border: 1px solid #f5f5f5;
border-radius: 4px;
color: #999;
cursor: pointer !important;
display: inline-block;
font-size: 12px;
font-weight: normal;
height: 20px;
letter-spacing: normal;
line-height: 20px;
margin: 0 5px 0 0;
padding: 1px 6px;
vertical-align: top;
}
a.green:hover { color: #FFF; background-color: #1BBC9D; border-color: #16A086; }
.ncap-order-style .ncap-order-details{
margin:20px auto;
}
.contact-info h3,.contact-info .form_class{
display: inline-block;
vertical-align: middle;
}
.form_class i.fa{
vertical-align: text-bottom;
}
</style>
<div class="page">
<div class="fixed-bar">
<div class="item-title"><a class="back" href="{$url|default='javascript:window.history.go(-1);'}" title="返回列表"><i class="fa fa-arrow-circle-o-left"></i></a>
<div class="subject">
<h3>礼包详情</h3>
<h5></h5>
</div>
</div>
</div>
<div class="ncap-order-style">
<div class="titile">
<h3></h3>
</div>
<div class="ncap-order-details">
<form id="order-action">
<div class="tabs-panels">
<div class="misc-info">
<h3>基本信息</h3>
<dl>
<dt>礼包编号:</dt>
<dd>{$order.order_sn}</dd>
<dt>会员手机:</dt>
<dd>{$order.mobile}</dd>
<dt>应付金额:</dt>
<dd>{$order.order_amount}</dd>
</dl>
<dl>
<dt>订单状态:</dt>
<dd>{$order['order_status_desc']}</dd>
<dt>下单时间:</dt>
<dd>{$order.add_time|date='Y-m-d H:i',###}</dd>
<dt>支付时间:</dt>
<dd><if condition="$order.pay_time neq 0">{$order.pay_time|date='Y-m-d H:i',###}<else/>N</if></dd>
</dl>
<dl>
<dt>门店信息:</dt>
<dd>{$order['pickup_name']}</dd>
<dt>礼包类型(收礼人可见):</dt>
<dd>{$order['lb_typename']}</dd>
<dt>备注:</dt>
<dd>{$order['user_note']}</dd>
</dl>
</div>
<div class="goods-info">
<h4>商品信息</h4>
<table>
<thead>
<tr>
<th colspan="2">商品</th>
<th class="w100">规格</th>
<th class="w100">数量</th>
<th class="w100">单品价格</th>
<th class="w120">会员折扣价</th>
<th class="w100">单品小计</th>
<th class="w100">商品操作</th>
</tr>
</thead>
<tbody>
<volist name="orderGoods" id="good">
<tr>
<td class="w30"><div class="goods-thumb"><a href="{:U('Mobile/Goods/goodsInfo',array('id'=>$good['goods_id'],'stoid'=>getAdmStoId()))}" target="_blank"><img alt="" src="{:getImg($good.original_img,'__PUBLIC__/images/not_adv.jpg',0,1)}" /> </a></div></td>
<td style="text-align: left;" class="w350"><a href="{:U('Mobile/Goods/goodsInfo',array('id'=>$good['goods_id'],'stoid'=>getAdmStoId()))}" target="_blank">{$good.goods_name}</a><br/>商品编号:{$good.goods_sn}<br/>商品条码:{$good.sku0}</td>
<td class="w100">{$good.goods_spec}</td>
<td class="w100">{$good.goods_num}</td>
<td class="w100">{$good.goods_price}</td>
<td class="w100">{$good.member_goods_price}</td>
<td class="w100">{$good.goods_total}</td>
<td class="w100"><eq name=":isReturn($order.order_id,$good.goods_id)" value="0">
无
<else/>
<a href="{:U('Admin/order/return_info',array('id'=>return_id($order['order_id'],$good.goods_id)))}"
style="color:#999;">{:ReturnType($order.order_id,$good.goods_id)}</a>
</eq></td>
</tr>
</volist>
</table>
</div>
<div class="total-amount contact-info">
<h3>订单总额:¥{$order.total_amount}</h3>
</div>
<div class="contact-info">
<h3>费用信息 </h3>
<div class="form_class">
<!--<a class="btn green" href="{:U('Admin/Order/editprice',array('order_id'=>$order['order_id']))}"><i class="fa fa-pencil-square-o"></i>修改费用</a>-->
</div>
<dl>
<dt>小计:</dt>
<dd>{$order.goods_price}</dd>
<dt>运费:</dt>
<dd>+{$order.shipping_price}</dd>
<dt>余额抵扣:</dt>
<dd>-{$order.user_money}</dd>
</dl>
<dl>
<dt>优惠券抵扣:</dt>
<dd>-{$order.coupon_price}</dd>
<dt>价格调整: </dt>
<dd>减:{$order.discount}</dd>
<dt>应付 : </dt>
<dd><strong class="red_common">{$order.order_amount}</strong></dd>
</dl>
<dl>
<dt>积分:</dt>
<dd>-{$order.integral}</dd>
<dt>订单优惠:</dt>
<dd>-{$order.order_prom_amount+$order.discount_amount}</dd>
<if condition="$order.return_amount neq 0">
<dt>退款金额:</dt>
<dd>{$order.return_amount}</dd>
</if>
</dl>
</div>
<div class="goods-info">
<h4>领取记录(单个可领{$order.kl_num}件,已领取{$lqorder_count}份)</h4>
<table>
<thead>
<tr>
<th>昵称</th>
<th>领取时间</th>
<th>商品信息</th>
<th>数量</th>
</tr>
</thead>
<tbody>
<empty name="lqorder">
<tr>
<td colspan="20" class="norecord">
<div class="warning-option"><i class="icon-warning-sign"></i><span>暂无领取记录</span>
</div>
</td>
</tr>
<else/>
<volist name="lqorder" id="lq">
<tr>
<td class="text-center">{$lq.consignee}</td>
<td class="text-center">{$lq.add_time|date='Y-m-d H:i:s',###}</td>
<td class="text-center">{$lq.goods_name}</td>
<td class="text-center">{$lq.goods_num}</td>
</tr>
</volist>
</empty>
</table>
</div>
</div>
</form>
</div>
</div>
</div>
<script type="text/javascript">
function delfun() {
// 删除按钮
layer.confirm('确认删除?', {
btn: ['确定'] //按钮
}, function () {
console.log("确定");
}, function () {
console.log("取消");
});
}
</script>
</body>
</html>