confirm-receiving.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!--module/diet/pages/delivery-address/delivery-address.wxml-->
  2. <t-navbar title="确认收货" left-arrow />
  3. <scroll-view class="page-scroll__container" type="list" scroll-y style="{{containerStyle}}">
  4. <view class="confirm-receive-container">
  5. <!-- 商品物流卡片列表 -->
  6. <view class="order-goods-list">
  7. <view class="goods-card" wx:for="{{goodsList}}" wx:key="id">
  8. <image class="goods-img" src="{{item.img}}" mode="aspectFill" />
  9. <view class="goods-info">
  10. <view class="goods-title">{{item.name}}</view>
  11. <view class="goods-count">×{{item.count}}</view>
  12. <view class="goods-express">
  13. <text class="express-label">快递:</text>
  14. <block wx:if="{{item.expressNo}}">
  15. <text class="express-no" bindtap="copyExpressNo" data-no="{{item.expressNo}}">
  16. {{item.expressNo}}
  17. </text>
  18. </block>
  19. <block wx:else>
  20. <text class="express-none">暂无物流信息</text>
  21. </block>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <!-- 确认提示文案 -->
  27. <view class="confirm-title">确认货都收到了吗?</view>
  28. <view class="confirm-desc">
  29. 为了保证您的售后权益,请收到商品确认无误后再确认收货
  30. </view>
  31. <!-- 底部按钮 -->
  32. <view class="confirm-footer">
  33. <t-button theme="default" class="footer-btn" bindtap="onCancel">取消</t-button>
  34. <t-button theme="primary" class="footer-btn" bindtap="onConfirmReceiving">确认</t-button>
  35. </view>
  36. </view>
  37. </scroll-view>
  38. <view style="height: {{container.safeBottomOffset}}px;flex: none;"></view>