You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							601 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							601 B
						
					
					
				
								<!--components/swiper/index.wxml-->
							 | 
						|
								<view class="e-swiper" wx:if="{{images.length > 0}}">
							 | 
						|
								  <swiper autoplay="{{true}}" 
							 | 
						|
								    interval="{{2000}}" 
							 | 
						|
								    duration="{{500}}" 
							 | 
						|
								    circular="{{true}}"
							 | 
						|
								    indicator-dots="{{true}}"
							 | 
						|
								    indicator-active-color="#D50000"
							 | 
						|
								    indicator-color="#fff"
							 | 
						|
								    >
							 | 
						|
								    <block wx:for="{{images}}" wx:key="swiper-{{index}}">
							 | 
						|
								      <swiper-item bind:tap="onTapImage" data-item="{{item}}">
							 | 
						|
								        <image class="swiper_icon" src="{{item.image}}">
							 | 
						|
								          <text class="swiper_title">{{item.title}}</text>
							 | 
						|
								        </image>
							 | 
						|
								      </swiper-item>
							 | 
						|
								    </block>
							 | 
						|
								  </swiper>
							 | 
						|
								</view>
							 |