accounts.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!-- 地址 -->
  2. <view class='address-box bg-white c-333'>
  3. <view class='mar-l20 mar-r20 f-box' bindtap='addressBtn'>
  4. <icon class='iconfont icon-dizhi mar-r20 f-box f-align-items-center c-orange' style='font-size:50rpx;'></icon>
  5. <view class='address-infor f-item'>
  6. <view class='f-box f-s30'><text>阿哥子</text><text>18888888888</text></view>
  7. <view class='mar-t20 f-s30'>上海市 闵行区 虹漕路88号</view>
  8. </view>
  9. <view class='arrow'></view>
  10. </view>
  11. </view>
  12. <!-- 订单 -->
  13. <view class='goodsList-box mar-t20 bg-white c-333'>
  14. <view class='goods-list' wx:for="{{goodsList}}">
  15. <view class='mar-r20 mar-l20'>
  16. <text class='f-s30'>{{item.customGoodsName}}</text>
  17. <view class='f-box f-align-items-center f-s28 mar-t20 mar-b20'>
  18. <text class='f-item f-s30 c-orange'>¥{{item.customgoodsPriceNow}}</text>
  19. <view> × {{item.customGoodsNum}}</view>
  20. </view>
  21. </view>
  22. <!-- 图片list -->
  23. <view class='f-box goods-img-list' >
  24. <image wx:for='{{item.imgArray}}' wx:for-item="itemSrc" src='{{host}}{{itemSrc}}' mode="aspectFit"></image>
  25. </view>
  26. </view>
  27. </view>
  28. <!-- 其他内容,邮费/备注等 -->
  29. <view class='other-box bg-white mar-t20 c-333'>
  30. <view class='mar-l20 mar-r20 f-s28'>
  31. <view class='other-list f-box'>
  32. <view class="f-item">运费</view>
  33. <view>包邮</view>
  34. </view>
  35. <!-- <view class='other-list'>
  36. <view class='mar-b20'>备注</view>
  37. <input placeholder='备注内容~'></input>
  38. </view> -->
  39. </view>
  40. </view>
  41. <!-- footer -->
  42. <view class='footer'>
  43. <view class='footer-box'>
  44. <view class='f-box mar-l20 f-justify-content-center'>
  45. <view class='f-item f-box f-align-items-end'>
  46. <text>合计:¥{{amount}}</text>
  47. </view>
  48. <view class='footer-btn bg-orange c-white mar-l20' bindtap='submitOrder'>结算</view>
  49. </view>
  50. </view>
  51. </view>