setMeal.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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 :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">立即抢购</view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. // 套餐
  32. list:[
  33. {id:1,img:'https://jtishfw.ncjti.edu.cn/homestay/setmeal/1.jpg',title:'新店开业:端午周末不加价|靖安双溪抱朴小院3天2晚含门票|三爪仑漂流双人|中华传统文化园套票|特色小吃2份',price:'¥180',outprice:'¥400',number:1151,},
  34. {id:1,img:'https://jtishfw.ncjti.edu.cn/homestay/setmeal/2.png',title:'新店开业:国庆中秋大优惠|靖安双溪抱朴小院6天5晚含门票|三爪仑漂流三人|中华传统文化园套票|特色小吃3份',price:'¥240',outprice:'¥520',number:188,},
  35. {id:1,img:'https://jtishfw.ncjti.edu.cn/homestay/setmeal/3.png',title:'新店开业:国庆中秋大优惠|靖安双溪抱朴小院6天5晚含门票|三爪仑漂流双人|中华传统文化园套票|特色小吃2份',price:'¥180',outprice:'¥400',number:58,},
  36. {id:1,img:'https://jtishfw.ncjti.edu.cn/homestay/setmeal/4.png',title:'新店开业:暑期限定特惠|靖安双溪抱朴小院3天2晚含门票|三爪仑漂流五人人|中华传统文化园套票|特色小吃5份',price:'¥900',outprice:'¥1700',number:88,},
  37. {id:1,img:'https://jtishfw.ncjti.edu.cn/homestay/setmeal/5.png',title:'新店开业:暑期限定特惠|靖安双溪抱朴小院3天2晚含门票|三爪仑漂流双人|中华传统文化园套票|特色小吃2份',price:'¥180',outprice:'¥400',number:88,},
  38. {id:1,img:'https://jtishfw.ncjti.edu.cn/homestay/setmeal/6.jpg',title:'新店开业:端午周末不加价|靖安双溪抱朴小院3天2晚含门票|三爪仑漂流三人|中华传统文化园套票|特色小吃3份',price:'¥240',outprice:'¥520',number:72,},
  39. ],
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. .container {
  46. box-sizing: border-box;
  47. padding: 20rpx 30rpx;
  48. min-height: 100vh;
  49. background-color: #ebeced;
  50. .setMeal_box {
  51. margin-bottom: 20rpx;
  52. border-radius: 10rpx;
  53. background-color: #fff;
  54. .box_img {
  55. height: 377rpx;
  56. img {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. }
  61. .box_info {
  62. padding: 0 25rpx;
  63. .info_msg {
  64. margin-top: 20rpx;
  65. line-height: 45rpx;
  66. font-size: 28rpx;
  67. }
  68. .info_price {
  69. display: flex;
  70. height: 62rpx;
  71. line-height: 62rpx;
  72. .new {
  73. color: #ff5733;
  74. font-size: 36rpx;
  75. font-weight: bold;
  76. text {
  77. font-size: 24rpx;
  78. font-weight: 400;
  79. }
  80. }
  81. .old {
  82. margin-left: 20rpx;
  83. color: #a6a6a6;
  84. font-size: 24rpx;
  85. text-decoration: line-through;
  86. }
  87. }
  88. .info_btn {
  89. display: flex;
  90. justify-content: space-between;
  91. height: 98rpx;
  92. .btn_count {
  93. padding: 0 20rpx;
  94. margin-top: 10rpx;
  95. height: 56rpx;
  96. line-height: 56rpx;
  97. color: #fff;
  98. font-size: 24rpx;
  99. border-radius: 10rpx;
  100. background-color: #e86346;
  101. }
  102. .btn_pay {
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. margin-top: -10rpx;
  107. width: 204rpx;
  108. height: 72rpx;
  109. border-radius: 48rpx;
  110. color: #ff5733;
  111. font-size: 32rpx;
  112. border: 1rpx solid #ff5733;
  113. }
  114. }
  115. }
  116. }
  117. }
  118. </style>