bztang-admin/plugins/exhelper/views/admin/print/print_tpl.blade.php

59 lines
3.1 KiB
PHP

<table class="table" style="border-top: 0;">
<tr>
<td style="width:100%;vertical-align: top; border: 0; padding: 0; padding-right: 20px;white-space:normal;">
<div class="panel panel-default" style="margin-bottom: 0;">
<div class="panel-heading">
<div class="row">
<div class="col-md-8">搜索结果 <span id="buyercount" style="color:#ff6600"></span>买家/<span id="ordercount" style="color:#ff6600"></span>订单</div>
<div class="col-md-4 text-right">
<div class="checkbox" style="width: 100%">
<label>
<input type="checkbox" id="allChange"> 全选打印
</label>
</div>
</div>
</div>
</div>
<div class="panel-body" style="min-height:100px; max-height: 500px; overflow-y: auto;">
<table class="table table-hover" style="width: auto; min-width: 100%; margin: 0;">
@if(!empty($list))
@foreach($list as $row)
<tr style="cursor: pointer;">
<td style='width:30px;'><input type="checkbox" class="oneChange" data-orderids="{!! implode(',',$row['orderids']) !!}"></td>
<td class='order_item' data-orderids="{!! implode(',',$row['orderids']) !!}">{{$row['realname']}}</td>
</tr>
@endforeach
@else
抱歉!未查找到相关数据。
@endif
</table>
</div>
</div>
</td>
</tr>
<tr>
<td style="vertical-align: top; border: 0; padding: 0;">
<div class="panel panel-default" id="orders">
<div class="panel-heading">订单信息</div>
<div class="panel-body">
@if(!empty($list)) 请先选择左侧搜索结果 @else 抱歉!未查到相关数据。 @endif
</div>
</div>
</td>
</tr>
</table>
<div class="panel-footer" id="alldoprintDiv" style="height: auto; overflow: hidden;">
<div class="form-group">
<div class="col-sm-12">
<p style="color:red;">注:电子面单打印建议使用谷歌浏览器,由于快递单模板不同,请自行调整打印大小。</p>
<p style="color:red;">注:全选打印不会有预览效果,而是直接打印</p>
<span class="btn btn-primary alldoprint" id="alldoprint1" data-state="0" data-cate="1">打印快递单</span>
<span class="btn btn-warning alldoprint" id="alldoprint2" data-state="0" data-cate="2">打印发货单</span>
<span class="btn btn-default alldoprint" id="alldoprint3" data-state="0" data-cate="3">打印电子面单</span>
{{-- <input type="checkbox" id="inputFn" checked>是否打印电子面单订单备注--}}
</div>
</div>
</div>