rimInfo.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="container">
  3. <view class="title">
  4. <img class="title_img" src="../../static/index/notice.png" />
  5. 购票须知
  6. </view>
  7. <view class="content border_b1">
  8. 老年人60周岁(含以上凭身份证享优惠儿童身高1.2米(小含以下(乘坐竹需要线下补交座位费)免费:身高1.2米(含)-1.5米(不含)享优惠导游、旅行社经理凭国家旅游局颁发的导游证、领队证或旅行社经理资格证享优惠:残疾人凭残疾证(双下肢残疾人和其他重度残疾人的陪护人员(限1人),可享受优惠票)享优惠现役军人凭军官证享优惠记者凭国家新闻出版总署或广电总局颁发的记者证及省级以上新闻单位的记者证享优惠:退役残疾军人凭军残证和身份证免费抚恤人员凭相关有效证件和身份证享优惠道德模范凭江西省文明委颁发的全国道德模范礼遇卡享优惠江西省高层次人才
  9. 凭高层次人才卡和身份证享优惠全日制大学本科及以下学历学生 凭本人学生证。
  10. </view>
  11. <view class="title">
  12. <img class="title_img" src="../../static/index/msg.png" />
  13. 景点介绍
  14. </view>
  15. <view class="content">此处内容为景点介绍内容</view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {}
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .container {
  27. padding: 0 20rpx;
  28. min-height: 100vh;
  29. background-color: #fff;
  30. .title {
  31. display: flex;
  32. align-items: center;
  33. padding-top: 27rpx;
  34. font-size: 32rpx;
  35. font-weight: bold;
  36. .title_img {
  37. margin-right: 15rpx;
  38. width: 38rpx;
  39. height: 38rpx;
  40. }
  41. }
  42. .content {
  43. padding-left: 54rpx;
  44. padding-bottom: 24rpx;
  45. margin-top: 16rpx;
  46. line-height: 40rpx;
  47. color: #666666;
  48. font-size: 28rpx;
  49. }
  50. .border_b1 {
  51. border-bottom: 1rpx solid #e6e6e6;
  52. }
  53. }
  54. </style>