Commit e53021e8 by 朱继来

区分联营、自营

parent 92173149
Showing with 7 additions and 1 deletions
......@@ -387,7 +387,13 @@
@if (!empty($order_items_info))
@foreach ($order_items_info as $v)
<tr>
<td><a href="{{Config('website.main_url').'goods_'.$v['goods_id'].'.html?ptag=order'}}" target="_blank">{{$v['goods_name']}}</a></td>
<td>
@if ($order_info['order_goods_type'] == 1)
<a href="{{Config('website.main_url').'goods_'.$v['goods_id'].'.html?ptag=order'}}" target="_blank">{{$v['goods_name']}}</a>
@else
<a href="{{Config('website.main_url').'item/'.$v['goods_id'].'.html?ptag=order'}}" target="_blank">{{$v['goods_name']}}</a>
@endif
</td>
<td>{{$v['brand_name']}}</td>
<td id="goods_number_{{$v['rec_id']}}">{{$v['goods_number']}}</td>
<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