优化个人中心订单列表 ui
This commit is contained in:
parent
1b1459d06c
commit
1edce65c79
|
|
@ -66,13 +66,13 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
@foreach ($latest_orders as $order)
|
@foreach ($latest_orders as $order)
|
||||||
<tr class="align-middle">
|
<tr class="align-middle">
|
||||||
<td>
|
<td style="width: 62px">
|
||||||
<div class="img me-3 border wh-60">
|
<div class="img border wh-60">
|
||||||
<img src="{{ $order->orderProducts[0]->image ?? '' }}" class="img-fluid">
|
<img src="{{ $order->orderProducts[0]->image ?? '' }}" class="img-fluid">
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="mb-2">{{ __('shop/account.order_number') }}:{{ $order->number }} <span class="vr lh-1 mx-2 bg-secondary"></span> {{ __('shop/account.all') }} {{ count($order->orderProducts) }} {{ __('shop/account.items') }}</div>
|
<div class="mb-2">{{ __('shop/account.order_number') }}:<span style="width: 110px;display: inline-block;">{{ $order->number }}</span> <span class="vr lh-1 me-2 bg-secondary"></span> {{ __('shop/account.all') }} {{ count($order->orderProducts) }} {{ __('shop/account.items') }}</div>
|
||||||
<div class="text-muted">{{ __('shop/account.order_time') }}:{{ $order->created_at }}</div>
|
<div class="text-muted">{{ __('shop/account.order_time') }}:{{ $order->created_at }}</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue