rimInfo.vue 1.9 KB

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