| | |
| | | <view class="fayunPlan"> |
| | | <view> |
| | | <view class="compDetails"> |
| | | <view class="comp">{{ orderPlanDetail.compName }}</view> |
| | | <!-- <view class="comp">{{ orderPlanDetail.compName }}</view> --> |
| | | <uni-table border stripe emptyText="暂无更多数据"> |
| | | <uni-tr> |
| | | <uni-td align="left">{{ orderPlanDetail.coalName }}</uni-td> |
| | | <uni-td align="left">{{ orderPlanDetail.cars }}张</uni-td> |
| | | <uni-th align="left">转发总量</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.fowardSum || 0 }}张</uni-td> |
| | | </uni-tr> |
| | | <uni-tr v-for="(item,index) in orderPlanDetail.huodaiList" :key="index"> |
| | | <uni-th align="left">{{ item.huoDaiName }}</uni-th> |
| | | <uni-td align="left">{{ item.fleetOrHuodaiNub }}张</uni-td> |
| | | </uni-tr> |
| | | <uni-tr v-for="(item,index) in orderPlanDetail.cheduiList" :key="index"> |
| | | <uni-th align="left">{{item.cheduiName}}</uni-th> |
| | | <uni-td align="left">{{ item.fleetOrHuodaiNub }}张</uni-td> |
| | | </uni-tr> |
| | | <uni-tr> |
| | | <uni-td align="left">货代领取{{ orderPlanDetail.huoDais }}张</uni-td> |
| | | <uni-td align="left">司机领取{{ orderPlanDetail.siJis }}张</uni-td> |
| | | <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> |
| | |
| | | orderPlanDetail: {} |
| | | }; |
| | | }, |
| | | onShow(){ |
| | | this.init(); |
| | | }, |
| | | methods: { |
| | | init() { |
| | | this.GetOrderPlanDetail(); |
| | |
| | | // 获取发运计划详情 |
| | | GetOrderPlanDetail() { |
| | | this.$reqGet('xiangqingList', { orderPlanId: this.orderPlanId }).then(res => { |
| | | console.log('发运计划详情', res); |
| | | this.orderPlanDetail = res.data; |
| | | }); |
| | | } |