pointsExchange.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view class="exchange-wrapper">
  3. <view class="exgood-wrapper">
  4. <view class="ex-img-wrapper"><image src="../../static/img/ex1.jpg" mode=""></image></view>
  5. <view class="exgood-title">湿热肝上火气肺痰煲湿热肝上火气肺痰煲</view>
  6. <view class="ex-addr">
  7. <image src="../../static/img/shop.png" mode="" class="name-img"></image>
  8. 子臣台州旗舰店
  9. <image src="../../static/img/point.png" mode="" class="point-img"></image>
  10. 200m
  11. </view>
  12. <view class="ex-price">
  13. ¥26+20
  14. <text class="tx1">积分</text>
  15. <text class="tx2">¥99</text>
  16. </view>
  17. </view>
  18. <view class="exgood-wrapper">
  19. <view class="ex-img-wrapper"><image src="../../static/img/ex1.jpg" mode=""></image></view>
  20. <view class="exgood-title">湿热肝上火气肺痰煲湿热肝上火气肺痰煲</view>
  21. <view class="ex-addr">
  22. <image src="../../static/img/shop.png" mode="" class="name-img"></image>
  23. 子臣台州旗舰店
  24. <image src="../../static/img/point.png" mode="" class="point-img"></image>
  25. 200m
  26. </view>
  27. <view class="ex-price">
  28. ¥26+20
  29. <text class="tx1">积分</text>
  30. <text class="tx2">¥99</text>
  31. </view>
  32. </view>
  33. <view class="exgood-wrapper">
  34. <view class="ex-img-wrapper"><image src="../../static/img/ex1.jpg" mode=""></image></view>
  35. <view class="exgood-title">湿热肝上火气肺痰煲湿热肝上火气肺痰煲</view>
  36. <view class="ex-addr">
  37. <image src="../../static/img/shop.png" mode="" class="name-img"></image>
  38. 子臣台州旗舰店
  39. <image src="../../static/img/point.png" mode="" class="point-img"></image>
  40. 200m
  41. </view>
  42. <view class="ex-price">
  43. ¥26+20
  44. <text class="tx1">积分</text>
  45. <text class="tx2">¥99</text>
  46. </view>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. </script>
  52. <style lang="scss">
  53. .exchange-wrapper {
  54. // background-color: #fff;
  55. width: 696rpx;
  56. // height: 100rpx;
  57. margin: 28rpx auto 39rpx;
  58. // padding: 0 27rpx;
  59. display: flex;
  60. justify-content: space-between;
  61. position: relative;
  62. flex-wrap: wrap;
  63. .exgood-wrapper {
  64. width: 342rpx;
  65. height: 540rpx;
  66. box-shadow: 0px 4px 18px 0px rgba(144, 27, 33, 0.13);
  67. margin-bottom: 20rpx;
  68. .ex-img-wrapper {
  69. width: 342rpx;
  70. height: 338rpx;
  71. image {
  72. width: 100%;
  73. height: 100%;
  74. }
  75. }
  76. .exgood-title {
  77. margin-top: 33rpx;
  78. padding-left: 21rpx;
  79. font-size: 30rpx;
  80. font-weight: bold;
  81. color: #333333;
  82. white-space: nowrap;
  83. overflow: hidden;
  84. text-overflow: ellipsis;
  85. }
  86. .ex-addr {
  87. margin-top: 16rpx;
  88. padding-left: 22rpx;
  89. height: 22rpx;
  90. font-size: 22rpx;
  91. font-weight: 500;
  92. color: #dcb876;
  93. image {
  94. height: 22rpx;
  95. }
  96. .name-img {
  97. width: 26rpx;
  98. margin: 0 4rpx -3rpx 0;
  99. }
  100. .point-img {
  101. width: 16rpx;
  102. margin: 0 4rpx -3rpx 14rpx;
  103. }
  104. }
  105. .ex-price {
  106. margin-top: 17rpx;
  107. padding-left: 22rpx;
  108. font-size: 36rpx;
  109. font-weight: bold;
  110. color: #901b21;
  111. vertical-align: bottom;
  112. .tx1 {
  113. font-size: 24rpx;
  114. vertical-align: baseline;
  115. position: relative;
  116. top: -2rpx;
  117. }
  118. .tx2 {
  119. margin-left: 9rpx;
  120. font-size: 26rpx;
  121. font-weight: 500;
  122. text-decoration: line-through;
  123. color: #9d9d9d;
  124. line-height: 35rpx;
  125. }
  126. }
  127. .bg {
  128. position: absolute;
  129. top: 0;
  130. width: 342rpx;
  131. height: 540rpx;
  132. background-image: url(../../static/img/bg3.png);
  133. background-size: 100% 100%;
  134. }
  135. }
  136. }
  137. </style>