This commit is contained in:
linfso 2025-08-13 07:02:51 +08:00
parent 1ad25bbd94
commit 0b81e01921

View File

@ -53,6 +53,9 @@
<el-tab-pane label="扫描记录" name="tab-1">
<TraceRecordList :key="resetRefreshId+'_1'" :billCode="showBillCode" @onCanSeeBillDetail="onCanSeeBillDetail"></TraceRecordList>
</el-tab-pane>
<el-tab-pane label="物流可视化" name="tab-6">
<MapTraceView :key="resetRefreshId+'_6'" :billCode="showBillCode"></MapTraceView>
</el-tab-pane>
<el-tab-pane label="运单信息" v-if="canViewDetail" name="tab-2">
<WaybillDetailReadOnly :key="resetRefreshId+'_2'" :billCode="showBillCode"></WaybillDetailReadOnly>
</el-tab-pane>
@ -65,6 +68,7 @@
<el-tab-pane label="问题件" name="tab-5">
<ProblemList :key="resetRefreshId+'_5'" :billCode="showBillCode"></ProblemList>
</el-tab-pane>
</el-tabs>
</div>
</template>
@ -74,12 +78,13 @@ import TraceRecordList from './traceRecordList.vue';
import ProblemList from './problemList.vue';
import BillPicList from './billPicList.vue';
import OperLogList from './operLogList.vue';
import MapTraceView from './mapTraceView.vue';
import WaybillDetailReadOnly from '@/views/emis/emisWaybill/waybillDetailReadOnly.vue';
import { getWaybillDetail,checkIsCanViewBillDetail } from "@/api/emis/emisWaybill";
import { getNormalLastScanRecord,getTraceListByBillCode } from "@/api/emis/emisTmsScanRecord";
import {timeDiffTime,timeFormat} from '@/utils/dateUtils'
export default {
@ -97,7 +102,8 @@ export default {
WaybillDetailReadOnly,
ProblemList,
BillPicList,
OperLogList
OperLogList,
MapTraceView
},
dicts: [],
data() {