confirm-receiving.wxml 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <!--module/article/pages/confirm-receiving/confirm-receiving.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" wx:for-index="index">
  8. <image class="goods-img" src="{{item.image}}" mode="aspectFill" />
  9. <view class="goods-info">
  10. <view class="goods-title">{{item.name}}</view>
  11. <view class="goods-count">× {{item.description}}</view>
  12. </view>
  13. <view class="goods-checkbox">
  14. <t-checkbox checked="{{item.checked}}" bind:change="onGoodsCheckChange" data-index="{{index}}" style="padding:0" />
  15. </view>
  16. </view>
  17. </view>
  18. <!-- 确认提示文案 -->
  19. <view class="confirm-title">确认货都收到了吗?</view>
  20. <view class="confirm-desc">
  21. 为了保证您的售后权益,请收到商品确认无误后再确认收货
  22. </view>
  23. <!-- 底部按钮 -->
  24. <view class="confirm-footer">
  25. <!-- <t-button theme="default" class="footer-btn" bindtap="onCancel">取消</t-button> -->
  26. <t-button theme="primary" class="footer-btn" bindtap="onConfirmReceiving">确定</t-button>
  27. </view>
  28. </view>
  29. </scroll-view>
  30. <view style="height: {{container.safeBottomOffset}}px;flex: none;"></view>