|  |  |  | 
|---|
|  |  |  | <view class="line" v-else> | 
|---|
|  |  |  | <text class="label">合同单号</text> | 
|---|
|  |  |  | <text class="value">{{ item.contractNum }}</text> | 
|---|
|  |  |  | <text class="primaryColor" @click="subDetail(item)">预约详情</text> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="line line2" v-if="item.billCode && item.wmsContractNum"> | 
|---|
|  |  |  | <text class="label">合同单号</text> | 
|---|
|  |  |  | <text class="value">{{ item.wmsContractNum }}</text> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="line"> | 
|---|
|  |  |  | <text class="label">驾驶员</text> | 
|---|
|  |  |  | <text class="value" | 
|---|
|  |  |  | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="line"> | 
|---|
|  |  |  | <text class="label">总运输量</text> | 
|---|
|  |  |  | <text class="value">{{ item.totalNum }}万支</text> | 
|---|
|  |  |  | <text class="value">{{ item.totalNum || item.ioQty }}万支</text> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="line" v-if="item.type != 4"> | 
|---|
|  |  |  | <view class="line" v-if="item.carrierName"> | 
|---|
|  |  |  | <text class="label">运输公司</text> | 
|---|
|  |  |  | <text class="value">{{ item.carrierName }}</text> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | 
|---|
|  |  |  | <view class="value">{{ wmsInfo.carrierName }}</view> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="separate"></view> | 
|---|
|  |  |  | <!-- <view class="separate"></view> --> | 
|---|
|  |  |  | <view class="contract_wrap"> | 
|---|
|  |  |  | <view class="contract_list" v-for="item in wmsInfo.wmsJobContractVOList"> | 
|---|
|  |  |  | <view class="title">合同号:{{ item.contractCode }}</view> | 
|---|
|  |  |  | 
|---|
|  |  |  | this.showDetail = true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | subDetail(item) { | 
|---|
|  |  |  | uni.navigateTo({ | 
|---|
|  |  |  | url: `/pages/index/SubDetail?id=${item.bookId}` | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | getPlatformGroup() { | 
|---|
|  |  |  | getPlatformGroupList({ | 
|---|
|  |  |  | queryData: 1, | 
|---|
|  |  |  | 
|---|
|  |  |  | }).then(res => { | 
|---|
|  |  |  | if (res.data) { | 
|---|
|  |  |  | this.platformLineUpList = [...this.platformLineUpList, ...res.data.records || []] | 
|---|
|  |  |  | this.platformLineUpList.forEach(item => { | 
|---|
|  |  |  | if(item.wmsContractNum){ | 
|---|
|  |  |  | item.wmsContractNum = item.wmsContractNum.split(',').join(',') | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | this.total = res.data.total || 0 | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | 
|---|
|  |  |  | margin-bottom: 20rpx; | 
|---|
|  |  |  | .label { | 
|---|
|  |  |  | width: 144rpx; | 
|---|
|  |  |  | flex-shrink: 0; | 
|---|
|  |  |  | color: #666666; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | .value { | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | .line2{ | 
|---|
|  |  |  | margin-right: -30rpx; | 
|---|
|  |  |  | padding-right: 0; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | </style> | 
|---|