| | |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="carrierName" label="运输公司" show-overflow-tooltip min-width="140"> |
| | | <el-table-column prop="carrierName" label="运输公司" show-overflow-tooltip min-width="140"> |
| | | <template v-slot="scope"> |
| | | <span>{{ scope.row.carrierName || '-' }}</span> |
| | | </template> |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="signDate" label="签到时间" min-width="150" /> |
| | | <el-table-column label="状态" align="center" width="80"> |
| | | <template slot-scope="{ row }"> |
| | | <!-- <span v-if="row.status == 2" class="red">月台等待</span> --> |
| | | <span v-if="row.status == 2" class="red">等待叫号</span> |
| | | <span v-if="row.status == 3" class="primaryColor">入园等待</span> |
| | | <span v-if="row.status == 7" class="primaryColor">转移中</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" align="center" width="100" fixed="right"> |
| | | <template slot-scope="{ row }"> |
| | | <el-button v-if="row.billCode" type="text" @click="handleDetail(row)" |
| | |
| | | <script> |
| | | import Pagination from '@/components/common/Pagination' |
| | | import QueryForm from '@/components/common/QueryForm' |
| | | import BasePage from '@/components/base/BasePage' |
| | | import { |
| | | getPlatformGroupList, |
| | | platformLineUpPage, |
| | |
| | | } from '@/api' |
| | | import { queryQueueUpConfig } from './config' |
| | | import WaybillDetail from './components/WaybillDetail.vue' |
| | | import DriverDetail from "@/views/task/driverDetail.vue" |
| | | import DriverDetail from '@/views/task/driverDetail.vue' |
| | | import PlatformSign from './components/PlatformSign.vue' |
| | | import BaseComputHeight from '@/components/base/BaseComputHeight' |
| | | export default { |
| | | extends: BasePage, |
| | | extends: BaseComputHeight, |
| | | components: { |
| | | Pagination, |
| | | QueryForm, |
| | |
| | | }, |
| | | handleSizeChange(e) { |
| | | this.pagination.pageSize = e |
| | | this.getList() |
| | | this.getList(1) |
| | | }, |
| | | handlePageChange(e) { |
| | | this.pagination.page = e |