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