<template>
|
<view class="main_app">
|
<view class="main_content">
|
<view class="title" @click="showPlatformgroup = true"
|
>{{ platformGroup.name
|
}}<u-icon
|
name="arrow-down"
|
size="20"
|
class="ml12"
|
color="#999999"
|
></u-icon
|
></view>
|
<view class="input_wrap">
|
<u-icon name="search" class="mr12" size="19" color="#999999" />
|
<input
|
v-model="carCodeFront"
|
type="text"
|
placeholder="搜索车辆牌照"
|
placeholder-class="placeholder9"
|
@confirm="handleQuery"
|
/>
|
</view>
|
<view class="count"
|
>总排队车辆:<text>{{ total }}</text></view
|
>
|
</view>
|
<!-- -->
|
<view class="dataList">
|
<view class="item" v-for="item in platformLineUpList" :key="item.id">
|
<view class="head">
|
<view v-if="item.carCodeFront" class="code">
|
<text>{{ item.carCodeFront.slice(0, 1) }}</text>
|
<text>{{ item.carCodeFront.slice(1, 2) }}</text>
|
<text>·</text>
|
<text>{{ item.carCodeFront.slice(2) }}</text>
|
</view>
|
<view class="status" v-if="item.signDate"
|
>签到时间:{{ item.signDate.slice(11, 16) }}</view
|
>
|
</view>
|
<view class="line" v-if="item.type == 4">
|
<text class="label">合同单号</text>
|
<text class="value">{{ item.contractNum }}</text>
|
</view>
|
<view class="line" v-else>
|
<text class="label">运输单号</text>
|
<text class="value">{{ item.code }}</text>
|
<text class="primaryColor" @click="handleDetail()">运单详情</text>
|
</view>
|
<view class="line">
|
<text class="label">驾驶员</text>
|
<text class="value"
|
>{{ item.driverName }} {{ item.drivierPhone }}</text
|
>
|
</view>
|
<view class="line">
|
<text class="label">总运输量</text>
|
<text class="value">{{ item.totalNum }}万支</text>
|
</view>
|
<view class="line" v-if="item.type != 4">
|
<text class="label">运输公司</text>
|
<text class="value">{{ item.carrierName }}</text>
|
</view>
|
<!-- <view class="btns">
|
<view class="btn active">入园</view>
|
</view> -->
|
</view>
|
<view v-if="platformLineUpList.length == 0" class="empty_wrap">
|
<image src="@/static/default_nodata@2x.png" />
|
<text>暂无作业车辆</text>
|
</view>
|
</view>
|
<u-picker
|
:show="showPlatformgroup"
|
keyName="name"
|
:columns="[platformGroupList]"
|
@cancel="showPlatformgroup = false"
|
@confirm="platConfirm"
|
></u-picker>
|
</view>
|
</template>
|
|
<script>
|
import { platformLineUpPage, getPlatformGroupList } from '@/api'
|
export default {
|
data() {
|
return {
|
showDetail: false,
|
showPlatformgroup: false,
|
capacity: 10,
|
page: 1,
|
total: 0,
|
carCodeFront: '',
|
platformGroup: {},
|
platformGroupList: [],
|
platformLineUpList: []
|
}
|
},
|
onLoad() {
|
this.getPlatformGroup()
|
},
|
onReachBottom() {
|
if(this.total > this.platformLineUpList.length){
|
this.getList()
|
}
|
},
|
methods: {
|
handleDetail() {
|
this.showDetail = true
|
},
|
getPlatformGroup() {
|
getPlatformGroupList({
|
queryData: 1,
|
queryType: 0
|
}).then(res => {
|
this.platformGroupList = res.data || []
|
if (this.platformGroupList && this.platformGroupList.length > 0) {
|
this.platformGroup = this.platformGroupList[0]
|
this.getList()
|
}
|
})
|
},
|
getList() {
|
const { page, capacity, platformGroup, carCodeFront } = this
|
platformLineUpPage({
|
capacity, page, model: { platformGroupId: platformGroup.id, callType: 2, carCodeFront }
|
}).then(res => {
|
if (res.data) {
|
this.platformLineUpList = [...this.platformLineUpList, ...res.data.records || []]
|
this.total = res.data.total || 0
|
}
|
})
|
},
|
handleQuery() {
|
this.page = 1
|
this.platformLineUpList = []
|
this.getList()
|
},
|
platConfirm(e) {
|
const index = e.indexs[0]
|
this.platformGroup = this.platformGroupList[index]
|
this.platformLineUpList = []
|
this.getList()
|
this.showPlatformgroup = false
|
},
|
}
|
}
|
</script>
|
<style lang="scss">
|
.main_app {
|
padding: 30rpx 0 0rpx;
|
min-height: 100vh;
|
background: #f7f7f7;
|
.main_content {
|
background-color: #fff;
|
padding: 30rpx 30rpx 0;
|
.title {
|
font-weight: 500;
|
font-size: 32rpx;
|
color: #111111;
|
line-height: 44rpx;
|
margin-bottom: 30rpx;
|
display: flex;
|
justify-content: center;
|
}
|
.input_wrap {
|
display: flex;
|
align-items: center;
|
width: 690rpx;
|
height: 76rpx;
|
background: #f7f7f7;
|
border-radius: 38rpx;
|
padding: 0 30rpx;
|
}
|
.count {
|
width: 750rpx;
|
margin: 0 -30rpx;
|
height: 80rpx;
|
display: flex;
|
align-items: center;
|
background-color: #f5f9f8;
|
font-size: 28rpx;
|
margin-top: 20rpx;
|
padding: 0 30rpx;
|
text {
|
color: #111111;
|
font-weight: 600;
|
}
|
}
|
}
|
.dataList {
|
.item {
|
margin-bottom: 20rpx;
|
padding: 30rpx;
|
background-color: #fff;
|
.head {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
margin-bottom: 30rpx;
|
.code {
|
display: flex;
|
font-weight: 600;
|
height: 60rpx;
|
line-height: 60rpx;
|
font-size: 32rpx;
|
color: #111111;
|
border-radius: 8rpx;
|
border: 1rpx solid #dfdede;
|
text {
|
&:nth-of-type(1) {
|
background: #e9f5f6;
|
padding: 0 12rpx;
|
}
|
&:nth-of-type(2) {
|
padding-left: 4rpx;
|
}
|
&:nth-of-type(4) {
|
padding-right: 6rpx;
|
}
|
}
|
}
|
.status {
|
font-size: 30rpx;
|
color: $uni-color-primary;
|
}
|
}
|
.line {
|
display: flex;
|
margin-bottom: 20rpx;
|
.label {
|
width: 144rpx;
|
color: #666666;
|
}
|
.value {
|
flex: 1;
|
}
|
}
|
.btns {
|
display: flex;
|
justify-content: flex-end;
|
.btn {
|
width: 136rpx;
|
height: 64rpx;
|
line-height: 64rpx;
|
text-align: center;
|
background: #ffffff;
|
border-radius: 40rpx;
|
border: 1rpx solid #999999;
|
margin-left: 20rpx;
|
}
|
.active {
|
background-color: $uni-color-primary;
|
color: #fff;
|
border-color: $uni-color-primary;
|
}
|
}
|
}
|
}
|
}
|
</style>
|