| 
					
				 | 
			
			
				@@ -39,6 +39,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		mixins: [MescrollMixin], // 使用mixin 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		data() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			return { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				currentPayUrl: "", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				payList: [], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				list: [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					{index:0,name: '未缴费',orderStatu:3,pageNum:1,total:null} 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -130,11 +131,23 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 						this.orderList.push(item.orderId) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				}); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-				console.log(this.orderList) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				this.$u.api.payGzbank({orderList: this.orderList}).then(res=>{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					let payUrl = res.data.url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-					window.open(payUrl); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					this.currentPayUrl=res.data.url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					// uni.navigateTo({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					//     url: '/pages/payLists/pay', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					// 	fail:function(err){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					// 		console.log('err',err) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					// 	} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					// }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					this.$u.route({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+						url: 'pages/payLists/pay', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+						params: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+							currentPayUrl: res.data.url 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+						} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					}); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				}).catch(err=>{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					this.$refs.uToast.show({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 						title: err.msg, 
			 |