| | |
| | | <template> |
| | | <view class="freightForwarder-index"> |
| | | <view class="freightForwarder-index-body"> |
| | | <u-empty mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png" textSize="30" iconSize="1000" v-if="orderPlanData.length == 0"></u-empty> |
| | | <card v-for="(item, index) in orderPlanData" :key="index" :name="item.id" @click="cardBodyClick" backgroundType="1"> |
| | | <template v-slot:left> |
| | | <view class="card-left__top"> |
| | | <text>{{ item.orderPlan.cars }}</text> |
| | | <text>{{ item.carNum }}</text> |
| | | 张 |
| | | </view> |
| | | <view class="card-left__utils"><u-button text="转发" type="primary" @tap.stop="forwardClick(item.id)" shape="circle"></u-button></view> |
| | |
| | | <view class="right-top"> |
| | | <view class="card-right-top-row"> |
| | | <view> |
| | | <text>{{ item.orderPlan.compName }}</text> |
| | | <text>{{ item.deptName||'' }}</text> |
| | | </view> |
| | | <view> |
| | | <text>{{ item.orderPlan.coalName }}</text> |
| | | <text>{{ item.coalName||'' }}</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </template> |
| | | <template v-slot:right-bottom> |
| | | <view class="code"> |
| | | <text>编号:{{ item.orderPlan.code }}</text> |
| | | <text>编号:{{ item.orderCode||'' }}</text> |
| | | </view> |
| | | </template> |
| | | </card> |