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.
		
		
		
		
		
			
		
			
				
					
					
						
							39 lines
						
					
					
						
							812 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							39 lines
						
					
					
						
							812 B
						
					
					
				
								<!-- z-paging -->
							 | 
						|
								<!-- github地址:https://github.com/SmileZXLee/uni-z-paging -->
							 | 
						|
								<!-- dcloud地址:https://ext.dcloud.net.cn/plugin?id=3935 -->
							 | 
						|
								<!-- 反馈QQ群:790460711 -->
							 | 
						|
								
							 | 
						|
								<!-- z-paging-cell,用于在nvue中使用cell包裹,vue中使用view包裹 -->
							 | 
						|
								<template>
							 | 
						|
									<!-- #ifdef APP-NVUE -->
							 | 
						|
									<cell :style="[cellStyle]" @touchstart="onTouchstart">
							 | 
						|
										<slot />
							 | 
						|
									</cell>
							 | 
						|
									<!-- #endif -->
							 | 
						|
									<!-- #ifndef APP-NVUE -->
							 | 
						|
									<view :style="[cellStyle]" @touchstart="onTouchstart">
							 | 
						|
										<slot />
							 | 
						|
									</view>
							 | 
						|
									<!-- #endif -->
							 | 
						|
								</template>
							 | 
						|
								
							 | 
						|
								<script>
							 | 
						|
									export default {
							 | 
						|
										name: "z-paging-cell",
							 | 
						|
										props: {
							 | 
						|
											//cellStyle
							 | 
						|
											cellStyle: {
							 | 
						|
												type: Object,
							 | 
						|
												default: function() {
							 | 
						|
								                    return {}
							 | 
						|
								                }
							 | 
						|
											}
							 | 
						|
										},
							 | 
						|
										methods: {
							 | 
						|
											onTouchstart(e) {
							 | 
						|
												this.$emit('touchstart', e);
							 | 
						|
											}
							 | 
						|
										}
							 | 
						|
									}
							 | 
						|
								</script>
							 | 
						|
								
							 |