order.wxml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!-- 地址 -->
  2. <view class='address-box bg-white'>
  3. <view class='mar-l20 mar-r20 f-box'>
  4. <view class='address-infor f-item'>
  5. <view class='f-box f-s30'><text>阿哥子</text><text>15055166539</text></view>
  6. <view class='mar-t20 f-s30'>
  7. 上海市 闵行区 虹漕路88号
  8. </view>
  9. </view>
  10. <view class='arrow'></view>
  11. </view>
  12. </view>
  13. <!-- 订单 -->
  14. <view class='goodsList-box mar-t20 bg-white'>
  15. <view class='goods-list' wx:for="{{goodsList}}">
  16. <view class='mar-r20 mar-l20'>
  17. <text class='f-s30'>{{item.customGoodsName}}</text>
  18. <view class='f-box f-align-items-center f-s28' style='margin:20rpx 0;'>
  19. <text class='f-item'>¥{{item.customgoodsPriceNow}}</text>
  20. <view> × {{item.customGoodsNum}}</view>
  21. </view>
  22. </view>
  23. <!-- 图片list -->
  24. <view class='f-box goods-img-list' wx:for='{{item.imgArray}}' wx:for-item="itemSrc">
  25. <image src='{{host}}{{itemSrc}}' mode="aspectFit"></image>
  26. </view>
  27. </view>
  28. </view>
  29. <!-- 其他内容,邮费/备注等 -->
  30. <view class='other-box bg-white mar-t20'>
  31. <view class='mar-l20 mar-r20 f-s28'>
  32. <view class='other-list f-box'>
  33. <view class="f-item">运费</view>
  34. <view>包邮</view>
  35. </view>
  36. <view class='other-list'>
  37. <view class='mar-b20'>备注</view>
  38. <input placeholder='备注内容~'></input>
  39. </view>
  40. </view>
  41. </view>