| | |
| | | <view class="right-top"> |
| | | <view class="card-right-top-row"> |
| | | <view> |
| | | <text>转发剩余:{{ item.carNumSurplusHuodai||'' }}</text> |
| | | <text>转发剩余:{{ item.carNumSurplusHuodai || '' }}</text> |
| | | </view> |
| | | <view> |
| | | <text>{{ item.coalName||'' }}</text> |
| | | <text>{{ item.coalName || '' }}</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </template> |
| | | <template v-slot:right-bottom> |
| | | <view class="code"> |
| | | <text>编号:{{ item.orderCode||'' }}</text> |
| | | <text>编号:{{ item.orderCode || '' }}</text> |
| | | </view> |
| | | </template> |
| | | </card> |
| | |
| | | }); |
| | | }, |
| | | cardBodyClick(id) { |
| | | let code = null; |
| | | this.orderPlanData.forEach(item => { |
| | | if (item.id == id) { |
| | | code = item.code; |
| | | } |
| | | }); |
| | | uni.navigateTo({ |
| | | url: `/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails?orderPlanId=${id}` |
| | | url: `/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails?orderPlanId=${id}&code=${code}` |
| | | }); |
| | | }, |
| | | // 转发 |
| | | forwardClick(value) { |
| | | uni.navigateTo({ |
| | | url: `/pages/public-page/forward/forward?orderPlanId=${value.id}&carNumSurplusHuodai=${value.carNumSurplusHuodai}` |
| | | url: `/pages/public-page/forward/forward?orderPlanId=${value.orderPlanId}&carNumSurplusHuodai=${value.carNumSurplusHuodai}` |
| | | }); |
| | | } |
| | | } |
| | |
| | | |
| | | // 卡片样式 |
| | | .card-left__top { |
| | | margin-top:vww(26); |
| | | margin-top: vww(26); |
| | | text-align: center; |
| | | color: #ffffff; |
| | | text { |