青蛙卖大米小程序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.

83 lines
1.3 KiB

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