home-more-item.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="bg-white py-6 px-10">
  3. <view class="fw-400 fs-14 text-333333 text-ellipsis-2">{{ item.title }}</view>
  4. <view class="fw-400 fs-11 text-D46C0D mt-4">肌肉酸疼、扭伤拉伤</view>
  5. <view class="fw-400 fs-11 text-999999 flex items-center gap-5 mt-4">
  6. <text>已售 5485</text>
  7. <text class="inline-block w-1 h-9 bg-CCCCCC"></text>
  8. <text>惊艳度 98%</text>
  9. </view>
  10. <view class="flex items-center gap-4 text-FF4B33 fs-11 mt-5">
  11. <view class="px-4 ph-2 border border-FFA599 rounded-2 ">9.5折</view>
  12. <view class="px-4 ph-2 border border-FFA599 rounded-2 ">限购1份</view>
  13. </view>
  14. <view class="flex items-center justify-between mt-8">
  15. <view class="text-FA341E">
  16. <text class="fs-10 fw-600">¥</text>
  17. <text class="fs-18 fw-600">10</text>
  18. <text class="fs-13 fw-600">.36</text>
  19. </view>
  20. <image class="w-20 h-20" src="https://cdn.his.cdwjyyh.com/images/add_car_icon.png"></image>
  21. </view>
  22. <view class="w-all h-18 bg-FFF4E8 flex items-center justify-between mt-10 py-3 px-5">
  23. <view class="flex items-center gap-2">
  24. <image class="w-12 h-12" src="https://cdn.his.cdwjyyh.com/images/ranking_icon.png">
  25. </image>
  26. <text class="text-4D4D4D fs-10 fw-400">健康新品热销榜</text>
  27. <image class="w-34 h-11" src="https://cdn.his.cdwjyyh.com/images/TOP.2@2x.png"></image>
  28. </view>
  29. <image class="w-8 h-8" src="https://cdn.his.cdwjyyh.com/images/purple_right_arrow_right.png"></image>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. props: {
  36. itemData: {
  37. type: Object,
  38. default: () => ({})
  39. }
  40. }
  41. }
  42. </script>