goods-cell.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="cell flex-align-center" :style="{ width: size.width + 'px' }">
  3. <view class="content" :style="{ width: size.width - 10 + 'px' }" @click="showDetail">
  4. <view class="imgBox">
  5. <image :src="data.cover" mode="aspectFit" class="image" />
  6. </view>
  7. <view class="marginX9 marginY7">
  8. <view class="font2 line-ellipsis">{{ data.name }}</view>
  9. <view class="marginT6 flex-align" style="color: red">
  10. <text class="font0">¥</text>
  11. <text class="font4 bold">{{ data.price }}</text>
  12. <view v-if="data.sellType == 2" class="presell">预售</view>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. props: {
  21. data: Object
  22. },
  23. data() {
  24. return {
  25. }
  26. },
  27. computed: {
  28. size() {
  29. let width = this.$store.state.systemInfo.screenWidth
  30. width = (width - 14) / 2
  31. let imgHeight = ((width - 10) * 150) / 170
  32. return { width, imgHeight }
  33. }
  34. },
  35. methods: {
  36. showDetail() {
  37. this.$emit('click', this.data)
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .cell {
  44. margin-bottom: 24rpx;
  45. .content {
  46. overflow: hidden;
  47. position: relative;
  48. .bg {
  49. position: absolute;
  50. z-index: -1;
  51. left: 0;
  52. right: 0;
  53. top: 0;
  54. width: 100%;
  55. height: 100%;
  56. }
  57. .imgBox {
  58. width: 340rpx;
  59. height: 400rpx;
  60. border-radius: 14rpx;
  61. background-image: radial-gradient(#ffffff 45%,#fff9e7);
  62. overflow: hidden;
  63. }
  64. .image {
  65. width: 100%;
  66. height: 100%;
  67. }
  68. .presell {
  69. width: 128rpx;
  70. height: 44rpx;
  71. line-height: 44rpx;
  72. border-radius: 22rpx;
  73. font-size: 24rpx;
  74. margin-left: 16rpx;
  75. text-align: center;
  76. }
  77. }
  78. }
  79. </style>