Commit 38bcb19d by 朱继来

联营详情审单按钮

parent 002cfa52
Showing with 2 additions and 2 deletions
......@@ -565,7 +565,7 @@
<p style="padding-left: 5px;">操作</p>
<div class="tabs-box">
<!-- 判断操作权限 -->
@if ($order_info['status'] == 1 && in_array('check_order', $userPerms))
@if (in_array($order_info['status'], [1, 2]) && in_array('check_order', $userPerms))
<a class="btn btn-info" href="{{URL('change', ['order_id'=>$order_info['order_id']])}}">人工审单</a>
@endif
......@@ -601,7 +601,7 @@
@endif
<!-- 订单审单 -->
@if (in_array($order_info['status'], [1, 2, 3]) && in_array('self_check_order', $userPerms))
@if (in_array($order_info['status'], [1, 2]) && in_array('self_check_order', $userPerms))
<a class="btn btn-info" href="/change/{{$order_info['order_id']}}?tags=self">人工审单</a>
@endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment