| 
									
										
										
										
											2025-03-23 09:29:40 +08:00
										 |  |  | <template> | 
					
						
							|  |  |  | 	<view> | 
					
						
							|  |  |  | 		<view class="pickList"> | 
					
						
							|  |  |  | 			<view class="pick" v-for="item in dataList"> | 
					
						
							|  |  |  | 				<view class="pick-content"> | 
					
						
							|  |  |  | 					<view class="pick-flex"> | 
					
						
							| 
									
										
										
										
											2025-04-01 21:35:18 +08:00
										 |  |  | 						<view class="size">{{'提货卡来源'}}</view> | 
					
						
							| 
									
										
										
										
											2025-03-23 09:29:40 +08:00
										 |  |  | 						<view class="right">{{item.pickTypeVal}}</view> | 
					
						
							|  |  |  | 					</view> | 
					
						
							|  |  |  | 					<view class="pick-flex"> | 
					
						
							| 
									
										
										
										
											2025-04-01 21:35:18 +08:00
										 |  |  | 						<view class="size">{{'提货数量'}}</view> | 
					
						
							| 
									
										
										
										
											2025-03-23 09:29:40 +08:00
										 |  |  | 						<view class="right">{{item.pickQuantity}}</view> | 
					
						
							|  |  |  | 					</view> | 
					
						
							|  |  |  | 					<view class="pick-flex"> | 
					
						
							| 
									
										
										
										
											2025-04-01 21:35:18 +08:00
										 |  |  | 						<view class="size">{{'订单编号'}}</view> | 
					
						
							| 
									
										
										
										
											2025-03-23 09:29:40 +08:00
										 |  |  | 						<view class="right">{{item.pickOrder}}</view> | 
					
						
							|  |  |  | 					</view> | 
					
						
							|  |  |  | 					<view class="lines"> | 
					
						
							|  |  |  | 						 | 
					
						
							|  |  |  | 					</view> | 
					
						
							|  |  |  | 					<view class="time-right">{{item.pickTime}}</view> | 
					
						
							|  |  |  | 				</view> | 
					
						
							|  |  |  | 			</view> | 
					
						
							|  |  |  | 		</view> | 
					
						
							|  |  |  | 	</view> | 
					
						
							|  |  |  | </template> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <script> | 
					
						
							|  |  |  | 	import * as apis from '@/config/index.js' | 
					
						
							|  |  |  | 	export default { | 
					
						
							|  |  |  | 		data() { | 
					
						
							|  |  |  | 			return { | 
					
						
							|  |  |  | 				query:{ | 
					
						
							|  |  |  | 					pageNum:1, | 
					
						
							|  |  |  | 					pageSize:50, | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				dataList:[] | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		mounted() { | 
					
						
							|  |  |  | 			this.getUserPickUpList() | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		methods: { | 
					
						
							|  |  |  | 			getUserPickUpList(){ | 
					
						
							|  |  |  | 				apis.pickLogList(this.query).then((res)=>{ | 
					
						
							|  |  |  | 					  if (res.total>0) { | 
					
						
							|  |  |  | 							this.dataList.push(...res.rows) | 
					
						
							|  |  |  | 					   } | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		onReachBottom() { | 
					
						
							|  |  |  | 			this.query.pageNum+=1 | 
					
						
							|  |  |  | 			this.getUserPickUpList() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <style> | 
					
						
							|  |  |  | 	.time-right{ | 
					
						
							|  |  |  | 		text-align: right; | 
					
						
							|  |  |  | 		margin: 20rpx 0 0 0;  | 
					
						
							|  |  |  | 		color: #999; | 
					
						
							|  |  |  | 		font-size: 24rpx; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	.lines{ | 
					
						
							|  |  |  | 		height: 1rpx; | 
					
						
							|  |  |  | 		background: #EEEEEE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	.pick-flex{ | 
					
						
							|  |  |  | 		display: flex; | 
					
						
							|  |  |  | 		justify-content: space-between; | 
					
						
							|  |  |  | 		margin-bottom: 20rpx; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	page{ | 
					
						
							|  |  |  | 		background-color: #f2f2f2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	.pickList{ | 
					
						
							|  |  |  | 		margin-top: 10rpx; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	.pick{ | 
					
						
							|  |  |  | 		background-color: #fff; | 
					
						
							|  |  |  | 		margin-bottom: 30rpx; | 
					
						
							|  |  |  | 		/* height: 300rpx; */ | 
					
						
							|  |  |  | 		padding: 30rpx 30rpx 20rpx 30rpx; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	.size{ | 
					
						
							|  |  |  | 		font-size: 26rpx; | 
					
						
							|  |  |  | 		color: #999; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	.right{ | 
					
						
							|  |  |  | 		color: #333; | 
					
						
							|  |  |  | 		font-size: 24rpx; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | </style> |