first-two.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!-- 分类展示:first-two 风格 -->
  2. <template>
  3. <view>
  4. <view class="ss-flex flex-wrap">
  5. <view class="goods-box" v-for="item in pagination?.list" :key="item.id">
  6. <view @click="sheep.$router.go('/pages/goods/index', { id: item.id })">
  7. <view class="goods-img">
  8. <image class="goods-img" :src="item.picUrl" mode="aspectFit" />
  9. </view>
  10. <view class="goods-content">
  11. <view class="goods-title ss-line-1 ss-m-b-28">{{ item.title }}</view>
  12. <view class="goods-price">¥{{ fen2yuan(item.price) }}</view>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script setup>
  20. import sheep from '@/sheep';
  21. import { fen2yuan } from '@/sheep/hooks/useGoods';
  22. const props = defineProps({
  23. pagination: Object,
  24. });
  25. </script>
  26. <style lang="scss" scoped>
  27. .goods-box {
  28. width: calc((100% - 20rpx) / 2);
  29. margin-bottom: 20rpx;
  30. .goods-img {
  31. width: 100%;
  32. height: 246rpx;
  33. border-radius: 10rpx 10rpx 0px 0px;
  34. }
  35. .goods-content {
  36. width: 100%;
  37. background: #ffffff;
  38. box-shadow: 0px 0px 20rpx 4rpx rgba(199, 199, 199, 0.22);
  39. padding: 20rpx 0 32rpx 16rpx;
  40. box-sizing: border-box;
  41. border-radius: 0 0 10rpx 10rpx;
  42. .goods-title {
  43. font-size: 26rpx;
  44. font-weight: bold;
  45. color: #333333;
  46. }
  47. .goods-price {
  48. font-size: 24rpx;
  49. font-family: OPPOSANS;
  50. font-weight: 500;
  51. color: #e1212b;
  52. }
  53. }
  54. &:nth-child(2n + 1) {
  55. margin-right: 20rpx;
  56. }
  57. }
  58. </style>