Commit 2ddfee18 by 朱继来

详情页添加业务类型

parent 435b5cd4
Showing with 8 additions and 0 deletions
...@@ -31,6 +31,10 @@ ...@@ -31,6 +31,10 @@
<th>订单类型</th> <th>订单类型</th>
@endif @endif
@if ($order_temp_info['business_type'])
<th>业务类型</th>
@endif
@if ($order_info['order_pay_type'] == 2) @if ($order_info['order_pay_type'] == 2)
<th>预付款</th> <th>预付款</th>
<th>尾款</th> <th>尾款</th>
...@@ -48,6 +52,10 @@ ...@@ -48,6 +52,10 @@
<td>{{ $order_info['sale_type'] == 1 ? '现卖' : '预售' }}</td> <td>{{ $order_info['sale_type'] == 1 ? '现卖' : '预售' }}</td>
@endif @endif
@if ($order_temp_info['business_type'])
<td>{{ Config('params.business_type')[$order_temp_info['business_type']] }}</td>
@endif
@if ($order_info['order_pay_type'] == 2) @if ($order_info['order_pay_type'] == 2)
<td>{{$currency.$order_info['advance_amount']}}</td> <td>{{$currency.$order_info['advance_amount']}}</td>
......
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