setMeal.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <template>
  2. <view class="container">
  3. <!-- 每一个套餐区域 -->
  4. <view class="setMeal_box" v-for="item in list" :key="item.id">
  5. <!-- 图片区域 -->
  6. <view class="box_img">
  7. <img mode="aspectFill" :src="item.img" />
  8. </view>
  9. <!-- 套餐信息区域 -->
  10. <view class="box_info">
  11. <view class="info_msg">{{ item.title }}</view>
  12. <view class="info_price">
  13. <view class="new">
  14. {{ item.price }}
  15. <text>起</text>
  16. </view>
  17. <view class="old">市场价{{ item.outprice }}</view>
  18. </view>
  19. <view class="info_btn">
  20. <view class="btn_count">已售{{ item.number }}张</view>
  21. <view class="btn_pay" @click="handleTip">立即抢购</view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. // 套餐
  32. list: [
  33. {
  34. id: 1,
  35. img: 'https://jtishfw.ncjti.edu.cn/homestay/setmeal/1.jpg',
  36. title: '周末不加价|靖安双溪抱朴小院3天2晚含门票|三爪仑漂流双人',
  37. price: '¥180',
  38. outprice: '¥400',
  39. number: 1151
  40. },
  41. {
  42. id: 1,
  43. img: 'https://jtishfw.ncjti.edu.cn/homestay/setmeal/2.png',
  44. title: '新店开业:国庆中秋大优惠|靖安双溪抱朴小院6天5晚含门票|特色小吃3份',
  45. price: '¥240',
  46. outprice: '¥520',
  47. number: 188
  48. },
  49. {
  50. id: 1,
  51. img: 'https://jtishfw.ncjti.edu.cn/homestay/setmeal/3.png',
  52. title: '中华传统文化园套票|特色小吃2份',
  53. price: '¥180',
  54. outprice: '¥400',
  55. number: 58
  56. },
  57. {
  58. id: 1,
  59. img: 'https://jtishfw.ncjti.edu.cn/homestay/setmeal/4.png',
  60. title: '三爪仑漂流五人人|中华传统文化园套票|特色小吃5份',
  61. price: '¥900',
  62. outprice: '¥1700',
  63. number: 88
  64. },
  65. {
  66. id: 1,
  67. img: 'https://jtishfw.ncjti.edu.cn/homestay/setmeal/5.png',
  68. title: '三爪仑漂流双人|中华传统文化园套票',
  69. price: '¥180',
  70. outprice: '¥400',
  71. number: 88
  72. },
  73. {
  74. id: 1,
  75. img: 'https://jtishfw.ncjti.edu.cn/homestay/setmeal/6.jpg',
  76. title: '中华传统文化园套票|特色小吃3份',
  77. price: '¥240',
  78. outprice: '¥520',
  79. number: 72
  80. }
  81. ]
  82. }
  83. },
  84. methods: {
  85. handleTip() {
  86. uni.showToast({
  87. title: '功能开发中',
  88. icon: 'none'
  89. })
  90. }
  91. }
  92. }
  93. </script>
  94. <style lang="scss" scoped>
  95. .container {
  96. box-sizing: border-box;
  97. padding: 20rpx 30rpx;
  98. min-height: 100vh;
  99. background-color: #ebeced;
  100. .setMeal_box {
  101. margin-bottom: 20rpx;
  102. border-radius: 10rpx;
  103. background-color: #fff;
  104. .box_img {
  105. height: 377rpx;
  106. img {
  107. width: 100%;
  108. height: 100%;
  109. }
  110. }
  111. .box_info {
  112. padding: 0 25rpx;
  113. .info_msg {
  114. margin-top: 20rpx;
  115. line-height: 45rpx;
  116. font-size: 28rpx;
  117. }
  118. .info_price {
  119. display: flex;
  120. height: 62rpx;
  121. line-height: 62rpx;
  122. .new {
  123. color: #ff5733;
  124. font-size: 36rpx;
  125. font-weight: bold;
  126. text {
  127. font-size: 24rpx;
  128. font-weight: 400;
  129. }
  130. }
  131. .old {
  132. margin-left: 20rpx;
  133. color: #a6a6a6;
  134. font-size: 24rpx;
  135. text-decoration: line-through;
  136. }
  137. }
  138. .info_btn {
  139. display: flex;
  140. justify-content: space-between;
  141. height: 98rpx;
  142. .btn_count {
  143. padding: 0 20rpx;
  144. margin-top: 10rpx;
  145. height: 56rpx;
  146. line-height: 56rpx;
  147. color: #fff;
  148. font-size: 24rpx;
  149. border-radius: 10rpx;
  150. background-color: #e86346;
  151. }
  152. .btn_pay {
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. margin-top: -10rpx;
  157. width: 204rpx;
  158. height: 72rpx;
  159. border-radius: 48rpx;
  160. color: #ff5733;
  161. font-size: 32rpx;
  162. border: 1rpx solid #ff5733;
  163. }
  164. }
  165. }
  166. }
  167. }
  168. </style>