| | |
| | | <view class="comp">{{ orderPlanDetail.compName }}</view> |
| | | <uni-table border stripe emptyText="暂无更多数据"> |
| | | <uni-tr> |
| | | <uni-td align="left">货代领取</uni-td> |
| | | <uni-td align="left">{{ orderPlanDetail.huodaiSum||0 }}张</uni-td> |
| | | <uni-th align="left">总领取量</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.fowerdsum || 0 }}张</uni-td> |
| | | </uni-tr> |
| | | <uni-tr> |
| | | <uni-td align="left">司机领取</uni-td> |
| | | <uni-td align="left">{{ orderPlanDetail.sijiSum||0 }}张</uni-td> |
| | | <uni-th align="left">车队和货代</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.fleetOrHuodaiNub || 0 }}张</uni-td> |
| | | </uni-tr> |
| | | <uni-tr> |
| | | <uni-th align="left">车队</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.cheduiList || 0 }}张</uni-td> |
| | | </uni-tr> |
| | | <uni-tr> |
| | | <uni-th align="left">货代</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.huodaiList || 0 }}张</uni-td> |
| | | </uni-tr> |
| | | <uni-tr> |
| | | <uni-th align="left">司机</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.sijiSum || 0 }}张</uni-td> |
| | | </uni-tr> |
| | | </uni-table> |
| | | </view> |
| | |
| | | <view class="compDetails"> |
| | | <view class="comp">预约情况</view> |
| | | <uni-table border stripe emptyText="暂无更多数据"> |
| | | <uni-tr v-for="(item, index) in orderPlanDetail.list"> |
| | | <uni-td align="left">{{ orderPlanDetail.coalName }}</uni-td> |
| | | <uni-td align="left">{{ orderPlanDetail.cars }}张</uni-td> |
| | | <uni-tr v-for="(item, index) in orderPlanDetail.yyDailyList"> |
| | | <uni-td align="left">{{ orderPlanDetail.yyDailyList }}</uni-td> |
| | | <uni-td align="left">{{ orderPlanDetail.yyDailyList }}张</uni-td> |
| | | </uni-tr> |
| | | </uni-table> |
| | | </view> |
| | |
| | | // 获取发运计划详情 |
| | | GetOrderPlanDetail() { |
| | | this.$reqGet('xiangqingList', { orderPlanId: this.orderPlanId }).then(res => { |
| | | console.log('发运计划详情', res); |
| | | this.orderPlanDetail = res.data; |
| | | }); |
| | | } |