mallOrderForm.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <template>
  2. <view class="mall">
  3. <view class="mall-top"> <text class="mall-title">商城订单</text>
  4. <view class="all"> <text>全部</text>
  5. <image class="right" src='../../../static/mine/right.png' mode=""></image>
  6. </view>
  7. </view>
  8. <view class="order-form">
  9. <view class="icon-center">
  10. <image class="form-icon" src='../../../static/mine/310.png' mode=""></image>
  11. <view class="characters">待付款</view>
  12. </view>
  13. <view class="icon-center">
  14. <image class="form-icon" src='../../../static/mine/311.png' mode=""></image>
  15. <view class="characters">拼团中</view>
  16. </view>
  17. <view class="icon-center">
  18. <image class="form-icon" src='../../../static/mine/312.png' mode=""></image>
  19. <view class="characters">代发货</view>
  20. </view>
  21. <view class="icon-center">
  22. <image class="form-icon" src='../../../static/mine/313.png' mode=""></image>
  23. <view class="characters">待收货</view>
  24. </view>
  25. <view class="icon-center">
  26. <image class="form-icon" src='../../../static/mine/314.png' mode=""></image>
  27. <view class="characters">退款/售后</view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. </script>
  34. <style lang="scss">
  35. .mall{
  36. height: 100px;
  37. width: 100%;
  38. background-color: #fff;
  39. border-radius: 10px;
  40. padding-top: 14px;
  41. margin-top: 10px;
  42. .mall-top{
  43. display: flex;
  44. justify-content: space-between;
  45. margin: 0 10px;
  46. .mall-title{
  47. font-size: 14px;
  48. color: #222;
  49. font-weight: 600;
  50. }
  51. .all{
  52. color: #333;
  53. font-size: 12px;
  54. display: flex;
  55. align-items: center;
  56. .right{
  57. width: 10px;
  58. height: 10px;
  59. }
  60. }
  61. }
  62. .order-form{
  63. display: flex;
  64. justify-content: space-around;
  65. margin-top: 18px;
  66. .icon-center{
  67. width: 15%;
  68. display: flex;
  69. flex-wrap: wrap;
  70. justify-content: center;
  71. }
  72. .form-icon{
  73. width: 24px;
  74. height: 22px;
  75. }
  76. .characters{
  77. color: #202020;
  78. font-size: 12px;
  79. margin-top: 10px;
  80. }
  81. }
  82. }
  83. </style>