s-order-card.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!-- 装修用户组件:用户订单 -->
  2. <template>
  3. <view class="ss-order-menu-wrap ss-flex ss-col-center">
  4. <view
  5. class="menu-item ss-flex-1 ss-flex-col ss-row-center ss-col-center"
  6. v-for="item in orderMap"
  7. :key="item.title"
  8. @tap="sheep.$router.go(item.path, { type: item.value })"
  9. >
  10. <uni-badge
  11. class="uni-badge-left-margin"
  12. :text="numData.orderCount[item.count]"
  13. absolute="rightTop"
  14. size="small"
  15. >
  16. <image class="item-icon" :src="sheep.$url.static(item.icon)" mode="aspectFit" />
  17. </uni-badge>
  18. <view class="menu-title ss-m-t-28">{{ item.title }}</view>
  19. </view>
  20. </view>
  21. </template>
  22. <script setup>
  23. /**
  24. * 装修组件 - 订单菜单组
  25. */
  26. import sheep from '@/sheep';
  27. import { computed } from 'vue';
  28. const orderMap = [
  29. {
  30. title: '待付款',
  31. value: '1',
  32. icon: '/static/images/no_pay.png',
  33. path: '/pages/order/list',
  34. type: 'unpaid',
  35. count: 'unpaidCount',
  36. },
  37. {
  38. title: '待收货',
  39. value: '3',
  40. icon: '/static/images/no_take.png',
  41. path: '/pages/order/list',
  42. type: 'noget',
  43. count: 'deliveredCount',
  44. },
  45. {
  46. title: '待评价',
  47. value: '4',
  48. icon: '/static/images/no_comment.png',
  49. path: '/pages/order/list',
  50. type: 'nocomment',
  51. count: 'uncommentedCount',
  52. },
  53. {
  54. title: '售后单',
  55. value: '0',
  56. icon: '/static/images/change_order.png',
  57. path: '/pages/order/aftersale/list',
  58. type: 'aftersale',
  59. count: 'afterSaleCount',
  60. },
  61. {
  62. title: '全部订单',
  63. value: '0',
  64. icon: '/static/images/all_order.png',
  65. path: '/pages/order/list',
  66. },
  67. ];
  68. const numData = computed(() => sheep.$store('user').numData);
  69. </script>
  70. <style lang="scss" scoped>
  71. .ss-order-menu-wrap {
  72. .menu-item {
  73. height: 160rpx;
  74. position: relative;
  75. z-index: 10;
  76. .menu-title {
  77. font-size: 24rpx;
  78. line-height: 24rpx;
  79. color: #333333;
  80. }
  81. .item-icon {
  82. width: 44rpx;
  83. height: 44rpx;
  84. }
  85. .num-icon {
  86. position: absolute;
  87. right: 18rpx;
  88. top: 18rpx;
  89. // width: 40rpx;
  90. padding: 0 8rpx;
  91. height: 26rpx;
  92. background: #ff4d4f;
  93. border-radius: 13rpx;
  94. color: #fefefe;
  95. display: flex;
  96. align-items: center;
  97. .num {
  98. font-size: 24rpx;
  99. transform: scale(0.8);
  100. }
  101. }
  102. }
  103. }
  104. </style>