modal-order.blade.php
2.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
<table class="table table-hover">
<thead>
<tr>
{{--<th>#</th>--}}
<th>微信头像</th>
<th>微信昵称</th>
<th>购买商品</th>
<th>数量</th>
<th>订单金额</th>
<th>订单状态</th>
<th>下单时间</th>
</tr>
</thead>
<tbody>
@if(!$items)
<tr>
<td colspan="10" style="padding: 100px;text-align: center;color: #999999">
<svg t="1562312016538" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
p-id="2076" width="128" height="128" style="fill: #e9e9e9;">
<path d="M512.8 198.5c12.2 0 22-9.8 22-22v-90c0-12.2-9.8-22-22-22s-22 9.8-22 22v90c0 12.2 9.9 22 22 22zM307 247.8c8.6 8.6 22.5 8.6 31.1 0 8.6-8.6 8.6-22.5 0-31.1L274.5 153c-8.6-8.6-22.5-8.6-31.1 0-8.6 8.6-8.6 22.5 0 31.1l63.6 63.7zM683.9 247.8c8.6 8.6 22.5 8.6 31.1 0l63.6-63.6c8.6-8.6 8.6-22.5 0-31.1-8.6-8.6-22.5-8.6-31.1 0l-63.6 63.6c-8.6 8.6-8.6 22.5 0 31.1zM927 679.9l-53.9-234.2c-2.8-9.9-4.9-20-6.9-30.1-3.7-18.2-19.9-31.9-39.2-31.9H197c-19.9 0-36.4 14.5-39.5 33.5-1 6.3-2.2 12.5-3.9 18.7L97 679.9v239.6c0 22.1 17.9 40 40 40h750c22.1 0 40-17.9 40-40V679.9z m-315-40c0 55.2-44.8 100-100 100s-100-44.8-100-100H149.6l42.5-193.3c2.4-8.5 3.8-16.7 4.8-22.9h630c2.2 11 4.5 21.8 7.6 32.7l39.8 183.5H612z"
p-id="2077"></path>
</svg>
</td>
</tr>
@else
@foreach($items as $row)
<tr>
{{-- <td>
{{$row->id}}
</td>--}}
<td><img src="{{$row->user->avatar}}" style="width:50px;"/></td>
<td>{{$row->user->nickname}}</td>
<td>{{$row->title}}</td>
<td>{{$row->quantity}}</td>
<td>{{ format_money($row->amount) }}</td>
<td>{{$row->status_zh}}</td>
<td>{{$row->created_at}}</td>
</tr>
@endforeach
@endif
</tbody>
</table>