|
|
@@ -5,12 +5,12 @@
|
|
|
<span id="nav2">
|
|
|
@component('package.menu')@endcomponent
|
|
|
</span>
|
|
|
- <div id="list">
|
|
|
+ <div id="list" class="d-none">
|
|
|
<div class="container-fluid">
|
|
|
<div id="form_div"></div>
|
|
|
<table class="table table-striped table-sm text-nowrap table-hover">
|
|
|
<tr>
|
|
|
- <th>异常类型修改</th>
|
|
|
+ <th>异常类型</th>
|
|
|
<th>序号</th>
|
|
|
<th>单号</th>
|
|
|
<th>状态</th>
|
|
|
@@ -19,15 +19,15 @@
|
|
|
<th>发出日期</th>
|
|
|
<th>收货日期</th>
|
|
|
<th>称重日期</th>
|
|
|
- <th>异常标记</th>
|
|
|
- <th>异常说明</th>
|
|
|
- <th>异常类型</th>
|
|
|
+{{-- <th>异常标记</th>--}}
|
|
|
+{{-- <th>异常说明</th>--}}
|
|
|
+{{-- <th>异常类型</th>--}}
|
|
|
<th>快递路由</th>
|
|
|
<th>客服备注</th>
|
|
|
</tr>
|
|
|
<tr v-for="(package,i) in packages" @click="selectTr===i+1?selectTr=0:selectTr=i+1" :class="selectTr===i+1?'focusing' : ''">
|
|
|
<td>
|
|
|
- <select v-model="package.exception_type" @change="package.showEditButton = true">
|
|
|
+ <select class="form-control-sm" v-model="package.exception_type" @change="package.showEditButton = true">
|
|
|
<option :disabled="!exception_editable" v-for="(value,index) in exception_types" :value="value" :name="value" :key="index">@{{ value }}</option>
|
|
|
</select>
|
|
|
<button class="btn btn-info btn-sm text-white mr-1" @click="updateExceptionType(package)" v-if="package.showEditButton">
|
|
|
@@ -41,9 +41,9 @@
|
|
|
<td>@{{ package.sent_at }}</td>
|
|
|
<td>@{{ package.received_at }}</td>
|
|
|
<td>@{{ package.weighed_at }}</td>
|
|
|
- <td>@{{ package.exception }}</td>
|
|
|
- <td>@{{ package.exception_message }}</td>
|
|
|
- <td>@{{ package.exception_type }}</td>
|
|
|
+{{-- <td>@{{ package.exception }}</td>--}}
|
|
|
+{{-- <td>@{{ package.exception_message }}</td>--}}
|
|
|
+{{-- <td>@{{ package.exception_type }}</td>--}}
|
|
|
<td>
|
|
|
<div v-if="package.transfer_status && package.transfer_status.length>0" class="text-overflow-warp-200 up" :id="'route-'+i">
|
|
|
<p v-for="route in package.transfer_status">
|
|
|
@@ -122,6 +122,7 @@
|
|
|
});
|
|
|
},
|
|
|
mounted() {
|
|
|
+ $('#list').removeClass('d-none');
|
|
|
let _this = this;
|
|
|
$(".up").slideUp();
|
|
|
let data = [
|