bm_page.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <view class="box">
  3. <u-navbar title="翔安澳洲线" autoBack :placeholder="true" bgColor="#fee1b9"></u-navbar>
  4. <view class="ban">
  5. <view class="" style="margin-bottom: 30rpx">
  6. <u-swiper :list="bannerlist" imgMode="aspectFill" :height="180" :autoplay="true" :circular="true"></u-swiper>
  7. </view>
  8. <!-- -->
  9. <view class="xq_tit">荻花洲起点 - 澳头终点 澳洲线介绍</view>
  10. <view class="xq_js">落日余晖千百态,浏江古渡荻花洲。傍晚海风习习的海滩上,露营的家庭、玩沙的孩童、拍夕阳的情侣,都为惬意的海湾悠闲添上了几分松弛感。</view>
  11. <!-- 报名 -->
  12. <view @click="goRegister" class="bm_btn">立即报名</view>
  13. <view class="ld">活动详情</view>
  14. <view class="hd_xq">
  15. <div>
  16. <text>活动时间:</text>
  17. <text>2024年12月18日</text>
  18. </div>
  19. <div>
  20. <text>活动起点:</text>
  21. <text>翔安区荻花洲</text>
  22. </div>
  23. <div>
  24. <text>报名费用:</text>
  25. <text>免费</text>
  26. </div>
  27. <div style="margin-bottom: 40rpx">
  28. <text>活动流程:</text>
  29. <text>...</text>
  30. </div>
  31. </view>
  32. <view class="ld">活动日程</view>
  33. <view class="rc_box">
  34. <view style="margin-top: 8rpx">
  35. <u-icon name="clock" color="#57bdc3" size="12"></u-icon>
  36. </view>
  37. <view style="margin-left: 30rpx; color: black">
  38. <view class="">起跑时间</view>
  39. <view class="star_time">8:00 AM</view>
  40. </view>
  41. </view>
  42. <!-- -->
  43. <view class="rc_box">
  44. <view class="yuan"></view>
  45. <view style="margin-left: 30rpx; color: black">
  46. <view class="">路线站点</view>
  47. <view class="star_time">沿途站点</view>
  48. </view>
  49. </view>
  50. <!-- -->
  51. <view class="rc_box">
  52. <view class="yuan"></view>
  53. <view style="margin-left: 30rpx; color: black">
  54. <view class="">文物讲解</view>
  55. <view class="star_time">每个站点的文物讲解</view>
  56. </view>
  57. </view>
  58. <!-- -->
  59. <view class="rc_box">
  60. <view style="margin-top: 8rpx">
  61. <u-icon name="clock" color="#57bdc3" size="12"></u-icon>
  62. </view>
  63. <view style="margin-left: 30rpx; color: black">
  64. <view class="">终点庆祝</view>
  65. <view class="star_time">8:00 AM</view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. export default {
  73. data() {
  74. return {
  75. bannerlist: ['https://img2.baidu.com/it/u=443975182,626431415&fm=253&fmt=auto&app=120&f=JPEG?w=627&h=418']
  76. };
  77. },
  78. methods: {
  79. goRegister() {
  80. uni.navigateTo({
  81. url: '/index_fenbao/XuanJiangYuan/xq_page'
  82. });
  83. }
  84. }
  85. };
  86. </script>
  87. <style>
  88. .box {
  89. height: auto;
  90. width: 100%;
  91. padding-bottom: 50rpx;
  92. background-image: url('https://huli-app.wenlvti.net/app_static/minnanhun/image/gj_bg.png');
  93. background-repeat: repeat-y;
  94. background-size: 100%;
  95. }
  96. .ban {
  97. width: 92%;
  98. margin: auto;
  99. }
  100. .xq_tit {
  101. color: black;
  102. font-size: 32rpx;
  103. font-weight: 700;
  104. }
  105. .xq_js {
  106. color: black;
  107. font-size: 28rpx;
  108. margin-top: 10rpx;
  109. line-height: 40rpx;
  110. height: 160rpx;
  111. overflow: scroll;
  112. }
  113. .bm_btn {
  114. width: 100%;
  115. height: 80rpx;
  116. font-size: 30rpx;
  117. line-height: 80rpx;
  118. text-align: center;
  119. color: #ffffff;
  120. border-radius: 10rpx;
  121. background-color: #fb5a02;
  122. margin-bottom: 60rpx;
  123. }
  124. .ld {
  125. font-size: 30rpx;
  126. font-weight: 700;
  127. margin-bottom: 20rpx;
  128. }
  129. .hd_xq {
  130. color: black;
  131. line-height: 40rpx;
  132. font-size: 26rpx;
  133. }
  134. .rc_box {
  135. display: flex;
  136. margin-left: 10rpx;
  137. margin-top: 20rpx;
  138. }
  139. .star_time {
  140. color: #928f8f;
  141. font-size: 26rpx;
  142. line-height: 45rpx;
  143. }
  144. .yuan {
  145. width: 16rpx;
  146. height: 16rpx;
  147. border-radius: 50%;
  148. margin-top: 10rpx;
  149. border: 2rpx solid #57bdc3;
  150. }
  151. </style>