青蛙卖大米小程序2024-11-24
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
1.2 KiB

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. <template>
  2. <view class="item" @click="$emit('click')">
  3. <view class="item-image">
  4. <image :src="item.image || 'https://img95.699pic.com/photo/50058/1378.jpg_wh860.jpg'" mode="aspectFill">
  5. </image>
  6. </view>
  7. <view class="info">
  8. <view class="title">
  9. {{ item.title }}
  10. </view>
  11. <view class="desc">
  12. {{ item.sku }}
  13. </view>
  14. <view class="price">
  15. {{ item.price }}
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. props: {
  23. item: {
  24. default: {}
  25. }
  26. },
  27. data() {
  28. return {
  29. }
  30. },
  31. methods: {
  32. }
  33. }
  34. </script>
  35. <style scoped lang="scss">
  36. .item {
  37. padding: 10rpx 20rpx;
  38. align-items: center;
  39. margin-bottom: 20rpx;
  40. display: flex;
  41. width: 100%;
  42. box-sizing: border-box;
  43. .item-image {
  44. width: 140rpx;
  45. height: 140rpx;
  46. flex-shrink: 0;
  47. image {
  48. height: 100%;
  49. width: 100%;
  50. border-radius: 20rpx;
  51. }
  52. }
  53. .info {
  54. padding: 20rpx;
  55. color: #555;
  56. flex: 1;
  57. .title {
  58. font-size: 28rpx;
  59. font-weight: 900;
  60. }
  61. .desc {
  62. font-size: 22rpx;
  63. color: #777;
  64. margin-top: 10rpx;
  65. }
  66. .price {
  67. text-align: right;
  68. color: #f40;
  69. font-size: 30rpx;
  70. font-weight: 900;
  71. }
  72. }
  73. }
  74. </style>