| | |
| | | <el-button :loading="exLoading" @click="handleEx" v-permissions="['business:platformjob:exportExcel']">导出</el-button> |
| | | </div> |
| | | <el-table class="mb20" v-loading="loading" :data="list" stripe> |
| | | <el-table-column prop="code" label="运单号" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="billCode" label="运单号" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="totalNum" label="总作业量(万支)" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="carCodeFront" label="车牌前照号" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="carCodeBack" label="车牌后照号" min-width="100" show-overflow-tooltip /> |
| | |
| | | <el-table-column prop="startDate" label="作业开始时间" min-width="150" show-overflow-tooltip /> |
| | | <el-table-column prop="doneDate" label="作业完成时间" min-width="150" show-overflow-tooltip /> |
| | | <el-table-column prop="workTime" label="作业时长" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="platformName" label="叫号月台" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="platformNames" label="叫号月台" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column label="作业情况" fixed="right" min-width="100" show-overflow-tooltip> |
| | | <template v-slot="scope"> |
| | | <span>{{ statusMap[scope.row.status] }}</span> |
| | |
| | | import UploadFaceImg from '@/components/common/UploadFaceImg' |
| | | import { Message } from 'element-ui' |
| | | import dayjs from 'dayjs' |
| | | import duration from 'dayjs/plugin/duration' |
| | | dayjs.extend(duration); |
| | | export default { |
| | | components: { |
| | | Pagination, |
| | |
| | | this.list.forEach(item => { |
| | | item.inTypeTemp = item.inType == 0 ? '整托盘' : '件烟' |
| | | item.taskOrigin = 'WMS获取' |
| | | item.workTime = dayjs.duration(item.workTime, 'seconds').format('H时m分s秒'); |
| | | }) |
| | | this.pagination.total = res.total || 0 |
| | | }, () => { |