| | |
| | | <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-th align="left">总领取量</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.fowerdsum || 0 }}张</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-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-th align="left">司机总领取</uni-th> |
| | | <uni-td align="left">{{ orderPlanDetail.sijiSum || 0 }}张</uni-td> |
| | | </uni-tr> |
| | | </uni-table> |