| 
					
				 | 
			
			
				@@ -34,7 +34,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   data() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       pageNum: 1, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-      pageSize: 10, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      pageSize: 20, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       remark: '', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       status: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       title: '', 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -44,8 +44,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   async onPullDownRefresh() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     this.pageNum = 1 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    let res = await this.getData() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    this.dataList = res 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    await this.getData() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     uni.stopPullDownRefresh() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   async onReachBottom() { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -78,7 +77,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           workerNumber: (await getUserInfo())?.workerNumber 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         .then(res => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-          if (this.pageNum === 1) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          if (this.pageNum == 1) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             this.dataList = res.data.records 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           } else if (this.pageNum > 1) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             this.dataList.push(...res.data.records) 
			 |