12345678910111213141516171819202122 |
- <!--pages/secondIntro/secondIntro.wxml-->
- <view class="indexContainer">
- <!-- 轮播图区域 -->
- <swiper class="banners" autoplay circular interval="2000" indicator-dots="true" indicator-color="ivory" indicator-active-color="#d43c33" next-margin="0rpx" previous-margin="0rpx">
- <swiper-item>
- <image src="../../images/1.jpg"></image>
- </swiper-item>
- <swiper-item>
- <image src="../../images/2.jpg"></image>
- </swiper-item>
- </swiper>
- <!-- 景区介绍的正文 -->
- <view class="textContainer">
- <view class="titleHead">
- <text>{{textIntro.title}}</text>
- </view>
- <view class="introContent" style="white-space: pre-wrap;">
- <text>{{textIntro.describes}}</text>
- </view>
- </view>
- </view>
|