mine.wxml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!--index.wxml-->
  2. <view class="container">
  3. <view class="userinfo f-box">
  4. <view>
  5. <block wx:if="{{userInfo.avatarUrl}}">
  6. <image class="userinfo-avatar" src="{{userInfo.avatarUrl}}"></image>
  7. </block>
  8. <block wx:else>
  9. <image class="userinfo-avatar" src="/images/def_photo.png"></image>
  10. </block>
  11. </view>
  12. <view class='user-right'>
  13. <view class="userinfo-nickname">{{userInfo.nickName}}</view>
  14. <view class='user-phone'>点击绑定手机号</view>
  15. </view>
  16. </view>
  17. <!-- 采购订单 -->
  18. <view class='user-order'>
  19. <view class="pad-t20 pad-b20 mar-r20 f-s30 mar-l20 order-title">我的采购订单</view>
  20. <view class='f-box order-list f-justify-content-center mar-l20 mar-r20 f-s28'>
  21. <view class='f-item order-item' data-state="0" bindtap='orderInfor'>
  22. <text>1</text>
  23. <icon class='iconfont icon-icon-test'></icon>
  24. <view>待付款</view>
  25. </view>
  26. <view class='f-item order-item' data-state="2" bindtap='orderInfor'>
  27. <text>1</text>
  28. <icon class='iconfont icon-daifahuo1'></icon>
  29. <view>待发货</view>
  30. </view>
  31. <view class='f-item order-item' data-state="3" bindtap='orderInfor'>
  32. <text>12</text>
  33. <icon class='iconfont icon-daishouhuo'></icon>
  34. <view>待收货</view>
  35. </view>
  36. </view>
  37. </view>
  38. <!-- 我的定制订单 -->
  39. <view class='user-order'>
  40. <view class="pad-t20 pad-b20 mar-r20 f-s30 mar-l20 order-title">我的定制订单</view>
  41. <view class='f-box order-list f-justify-content-center mar-l20 mar-r20 f-s28'>
  42. <view class='f-item order-item' data-state="0" bindtap='orderInfor'>
  43. <text>1</text>
  44. <icon class='iconfont icon-icon-test'></icon>
  45. <view>待付款</view>
  46. </view>
  47. <view class='f-item order-item' data-state="2" bindtap='orderInfor'>
  48. <text>1</text>
  49. <icon class='iconfont icon-daifahuo1'></icon>
  50. <view>待发货</view>
  51. </view>
  52. <view class='f-item order-item' data-state="3" bindtap='orderInfor'>
  53. <text>1</text>
  54. <icon class='iconfont icon-daishouhuo'></icon>
  55. <view>待收货</view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>