index.wxml 608 B

1234567891011121314151617181920212223242526
  1. <view class="title">装箱明细</view>
  2. <view class="binding-box" wx:for="{{5}}" wx:key="index">
  3. <view class="boxnum">
  4. 箱码:{{index}}
  5. </view>
  6. <view class="numno">
  7. 订货单:598616598984
  8. </view>
  9. <navigator class="product" url="#" wx:for="{{2}}">
  10. <view class="image">
  11. </view>
  12. <view class="content">
  13. <view class="content-title">产品名称</view>
  14. <view class="row">
  15. <text>编号:123456789</text>
  16. <text>规格:HQ9555555</text>
  17. </view>
  18. <view class="row">
  19. <text>型号:HQ9555555</text>
  20. <text class="qty">x5</text>
  21. </view>
  22. </view>
  23. </navigator>
  24. </view>