| 
					
				 | 
			
			
				@@ -10,15 +10,15 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		</u-navbar> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		<view class="page-wrap"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			<u-swiper 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-				v-if="details.slideImgList.length>0" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-				:list="details.slideImgList" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				v-if="slideImgList.length>0" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				:list="slideImgList" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				height="700rpx" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				@change="e => currentNum = e.current" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				:autoplay="false" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				indicatorStyle="right: 20px" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				<view slot="indicator" class="indicator-num"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-					<text class="indicator-num__text">{{ currentNum + 1 }}/{{ details.slideImgList.length }}</text> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					<text class="indicator-num__text">{{ currentNum + 1 }}/{{ slideImgList.length }}</text> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			</u-swiper> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		</view> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -78,6 +78,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			return { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				id:'', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				details:{slideImgList:[]}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				slideImgList:[], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				currentNum:0, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				telShow:false, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				tempTel:'', 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -98,6 +99,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			getPageData(){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				this.$u.api.shopById({id:this.id}).then(res=>{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					this.details = res.data; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					this.slideImgList =  res.data.slideImgList||[]; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					// console.log('getPageData',this.details); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				}).catch(err=>{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					console.log('getPageData',err); 
			 |