|
@@ -17,7 +17,10 @@ style="margin: 0 auto;width: 96%;padding: 30px 0px;"
|
|
|
|
|
|
<form action="" method="get" name="thisform" class="form-horizontal form-line">
|
|
|
<div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-12" style="margin-right: 2px;">
|
|
|
- <input type="text" class="form-control" name="order_code" value="{{request('order_code','')}}" maxlength="13" placeholder="请输入订单编号查询" />
|
|
|
+ <input type="text" class="form-control" name="order_code" value="{{request('order_code','')}}" maxlength="13" placeholder="请输入订单ID查询" />
|
|
|
+ </div>
|
|
|
+ <div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-12" style="margin-right: 2px;">
|
|
|
+ <input type="text" class="form-control" name="snowflake_id" value="{{request('snowflake_id','')}}" maxlength="20" placeholder="请输入订单编号查询" />
|
|
|
</div>
|
|
|
<div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-12" style="margin-right: 2px;">
|
|
|
<input type="text" class="form-control" name="custom_code" value="{{request('custom_code','')}}" placeholder="请输入客户编码查询" />
|
|
@@ -75,6 +78,7 @@ style="margin: 0 auto;width: 96%;padding: 30px 0px;"
|
|
|
<table class="table table-striped table-bordered table-hover">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
+ <th>订单ID</th>
|
|
|
<th>订单编号</th>
|
|
|
<th>下单用户</th>
|
|
|
<th>产品</th>
|
|
@@ -95,6 +99,7 @@ style="margin: 0 auto;width: 96%;padding: 30px 0px;"
|
|
|
@foreach ($list as $a)
|
|
|
<tr>
|
|
|
<td>{{$a['is_rebate']?'【赠品】':''}}{{$a['order_code']}}</td>
|
|
|
+ <td>{{$a['snowflake_id']}}</td>
|
|
|
<td><a href="{{url('admin/custom/index?'.http_build_query(['custom_code'=>$a['custom_code']]))}}">{{$a['custom_name']}}</a></td>
|
|
|
<td>@foreach($a['product'] as $product)
|
|
|
{{$product['product_name'].'*'.$product['buy_num']}}<br/>
|