|
|
@@ -111,19 +111,31 @@
|
|
|
</div>
|
|
|
<table class="table table-striped table-sm table-bordered table-hover text-nowrap" style="background: #fff;">
|
|
|
<tr>
|
|
|
- <th>
|
|
|
+ <th class="waybill_1">
|
|
|
<label for="all">
|
|
|
<input id="all" type="checkbox" @click="checkAll($event)">全选
|
|
|
</label>
|
|
|
</th>
|
|
|
- <th>ID</th>
|
|
|
- <th>运单类型</th>
|
|
|
- <th>当前状态</th>
|
|
|
- <th>运单号</th>
|
|
|
- <th>货主</th>
|
|
|
+ <th class="waybill_1">ID</th>
|
|
|
+ <th class="waybill_1">创建时间</th>
|
|
|
+ <th class="waybill_1">运单类型</th>
|
|
|
+ <th class="waybill_1">货主</th>
|
|
|
+ <th class="waybill_1">运单号</th>
|
|
|
+ <th class="waybill_1">当前状态</th>
|
|
|
+ <th class="waybill_1">始发地</th>
|
|
|
+ <th class="waybill_1">目的地</th>
|
|
|
+ <th class="waybill_2">承运商</th>
|
|
|
+ <th class="waybill_2">承运商单号</th>
|
|
|
+ <th class="waybill_2">车型</th>
|
|
|
+ <th class="waybill_2">仓库计数(抛)</th>
|
|
|
+ <th class="waybill_2">承运商计数(抛)</th>
|
|
|
+ <th class="waybill_2">仓库计数二</th>
|
|
|
+ <th class="waybill_2">承运商计数二</th>
|
|
|
+ <th class="waybill_3">运费(元)</th>
|
|
|
+ <th class="waybill_3">提货费(元)</th>
|
|
|
+ <th class="waybill_3">其他费用(元)</th>
|
|
|
+ <th class="waybill_3">调度备注</th>
|
|
|
<th>WMS单号</th>
|
|
|
- <th>始发地</th>
|
|
|
- <th>目的地</th>
|
|
|
<th>收件人</th>
|
|
|
<th>收件人电话</th>
|
|
|
<th>收费(元)</th>
|
|
|
@@ -134,21 +146,9 @@
|
|
|
@can('运输管理-编辑','运输管理-运单审核','运输管理-调度','运输管理-编辑','运输管理-删除')
|
|
|
<th>操作</th>
|
|
|
@endcan
|
|
|
- <th>承运商</th>
|
|
|
- <th>承运商单号</th>
|
|
|
<th>始发市</th>
|
|
|
<th>目的市</th>
|
|
|
- <th>仓库计数(抛)</th>
|
|
|
- <th>仓库计数二</th>
|
|
|
- <th>承运商计数(抛)</th>
|
|
|
- <th>承运商计数二</th>
|
|
|
- <th>车型</th>
|
|
|
<th>车辆信息</th>
|
|
|
- <th>运费(元)</th>
|
|
|
- <th>提货费(元)</th>
|
|
|
- <th>其他费用(元)</th>
|
|
|
- <th>调度备注</th>
|
|
|
- <th>创建时间</th>
|
|
|
<th>调度审核人</th>
|
|
|
</tr>
|
|
|
|
|
|
@@ -157,13 +157,28 @@
|
|
|
<input class="checkItem" type="checkbox" :value="waybill.id" v-model="checkData">
|
|
|
</td>
|
|
|
<td>@{{waybill.id}}</td>
|
|
|
+ <td>@{{waybill.created_at}}</td>
|
|
|
<td>@{{waybill.type}}</td>
|
|
|
- <td :style="{color:waybill.status=='已审核'?'blue':''}">@{{waybill.status}}</td>
|
|
|
- <td>@{{waybill.waybill_number}}</td>
|
|
|
<td>@{{waybill.owner}}</td>
|
|
|
- <td>@{{waybill.wms_bill_number}}</td>
|
|
|
+ <td>@{{waybill.waybill_number}}</td>
|
|
|
<td>@{{waybill.origination}}</td>
|
|
|
<td>@{{waybill.destination}}</td>
|
|
|
+ <td>@{{waybill.carrier}}</td>
|
|
|
+ <td>@{{waybill.carrier_bill}}</td>
|
|
|
+ <td><p v-if="waybill.carType">@{{ waybill.carType.name }}<i v-if="waybill.carType.length">(@{{waybill.carType.length}}米)</i></p></td>
|
|
|
+ <td>@{{waybill.warehouse_weight}} @{{waybill.warehouse_weight_unit}}</td>
|
|
|
+ <td>@{{waybill.carrier_weight}} @{{waybill.carrier_weight_unit}}</td>
|
|
|
+ <td>@{{waybill.warehouse_weight_other}} @{{waybill.warehouse_weight_unit_other}}</td>
|
|
|
+ <td>@{{waybill.carrier_weight_other}} @{{waybill.carrier_weight_unit_other}}</td>
|
|
|
+ @can('运输管理-可见费用项')
|
|
|
+ <td><p v-if="waybill.type=='专线'"></p><p v-else>@{{waybill.fee}}</p></td>
|
|
|
+ <td>@{{waybill.pick_up_fee}}</td>
|
|
|
+ <td>@{{waybill.other_fee}}</td>
|
|
|
+ @endcan
|
|
|
+ <td>@{{waybill.dispatch_remark}}</td>
|
|
|
+
|
|
|
+ <td :style="{color:waybill.status=='已审核'?'blue':''}">@{{waybill.status}}</td>
|
|
|
+ <td>@{{waybill.wms_bill_number}}</td>
|
|
|
<td>@{{waybill.recipient}}</td>
|
|
|
<td>@{{waybill.recipient_mobile}}</td>
|
|
|
<td>@{{waybill.charge}}</td>
|
|
|
@@ -199,23 +214,9 @@
|
|
|
@endcan
|
|
|
</div>
|
|
|
</td>
|
|
|
- <td><p>@{{waybill.carrier}}</p></td>
|
|
|
- <td>@{{waybill.carrier_bill}}</td>
|
|
|
<td>@{{waybill.origination_city}}</td>
|
|
|
<td>@{{waybill.destination_city}}</td>
|
|
|
- <td>@{{waybill.warehouse_weight}} @{{waybill.warehouse_weight_unit}}</td>
|
|
|
- <td>@{{waybill.warehouse_weight_other}} @{{waybill.warehouse_weight_unit_other}}</td>
|
|
|
- <td>@{{waybill.carrier_weight}} @{{waybill.carrier_weight_unit}}</td>
|
|
|
- <td>@{{waybill.carrier_weight_other}} @{{waybill.carrier_weight_unit_other}}</td>
|
|
|
- <td><p v-if="waybill.carType">@{{ waybill.carType.name }}<i v-if="waybill.carType.length">(@{{waybill.carType.length}}米)</i></p></td>
|
|
|
<td>@{{waybill.car_owner_info}}</td>
|
|
|
- @can('运输管理-可见费用项')
|
|
|
- <td><p v-if="waybill.type=='专线'"></p><p v-else>@{{waybill.fee}}</p></td>
|
|
|
- <td>@{{waybill.pick_up_fee}}</td>
|
|
|
- <td>@{{waybill.other_fee}}</td>
|
|
|
- @endcan
|
|
|
- <td>@{{waybill.dispatch_remark}}</td>
|
|
|
- <td>@{{waybill.created_at}}</td>
|
|
|
<td><p v-for="waybillAuditLog in waybill.waybillAuditLogs" v-if=waybillAuditLog.audit_stage==="调度阶段">@{{waybillAuditLog.user.name}}</p></td>
|
|
|
</tr>
|
|
|
<tr v-show="wmsCommodities&&wmsCommodities.length>0" id="wmsCommodities">
|
|
|
@@ -252,6 +253,11 @@
|
|
|
|
|
|
|
|
|
@section('lastScript')
|
|
|
+ <style>
|
|
|
+ .waybill_1{background-color: #FFA07A}
|
|
|
+ .waybill_2{background-color: cornflowerblue}
|
|
|
+ .waybill_3{background-color: #00FFFF}
|
|
|
+ </style>
|
|
|
<script>
|
|
|
let vueList=new Vue({
|
|
|
el:'#list',
|