!85 增加2处hook
* 增加hookwrapper * Merge branch 'dev' of https://gitee.com/beikeshop/beikeshop into dev * Merge branch 'dev' of https://gitee.com/what520/beikeshop into dev * 增加hook,实现插件中要求的其他订单状态显示 * 调整状态字段的显示字段,与后端的一致 * !83 提交两个hook * 增加
This commit is contained in:
parent
a3470b27c0
commit
d1fed8b618
|
|
@ -209,6 +209,7 @@
|
|||
@endhookwrapper
|
||||
|
||||
@if ($order->orderShipments)
|
||||
@hookwrapper('admin.order.form.shipments')
|
||||
<div class="card mb-4">
|
||||
<div class="card-header"><h6 class="card-title">{{ __('order.order_shipments') }}</h6></div>
|
||||
<div class="card-body">
|
||||
|
|
@ -252,6 +253,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endhookwrapper
|
||||
@endif
|
||||
|
||||
<div class="card mb-4">
|
||||
|
|
|
|||
|
|
@ -161,6 +161,7 @@
|
|||
@endif
|
||||
|
||||
@if ($order->orderShipments->count())
|
||||
@hookwrapper('account.order_info.shipments')
|
||||
<div class="card mb-4">
|
||||
<div class="card-header"><h6 class="card-title">{{ __('order.order_shipments') }}</h6></div>
|
||||
<div class="card-body">
|
||||
|
|
@ -186,6 +187,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endhookwrapper
|
||||
@endif
|
||||
|
||||
@if ($order->orderHistories->count())
|
||||
|
|
|
|||
Loading…
Reference in New Issue