|  | @@ -285,7 +285,7 @@
 | 
	
		
			
				|  |  |        <userPayForm v-if="userVisible"
 | 
	
		
			
				|  |  |                     @close="userVisible = false"
 | 
	
		
			
				|  |  |                     @submited="payedSubmited"
 | 
	
		
			
				|  |  | -                   @changeActive="$listeners.changeActive"
 | 
	
		
			
				|  |  | +                   @changeActive="changeActive"
 | 
	
		
			
				|  |  |                     :organizationCourseUnitPriceSettings="organizationCourseUnitPriceSettings"
 | 
	
		
			
				|  |  |                     :rowDetail='activeRow'
 | 
	
		
			
				|  |  |                     :type="payFormType"
 | 
	
	
		
			
				|  | @@ -539,6 +539,11 @@ export default {
 | 
	
		
			
				|  |  |        this.payFormType = row.payUserType === 'SCHOOL' ? 'school' : 'user'
 | 
	
		
			
				|  |  |        this.userVisible = true;
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  | +    changeActive(val) {
 | 
	
		
			
				|  |  | +      if (this.$listeners.changeActive) {
 | 
	
		
			
				|  |  | +        this.$listeners.changeActive(val)
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |      async chioseStudentSubmited () {
 | 
	
		
			
				|  |  |        try {
 | 
	
		
			
				|  |  |          await this.$confirm('缴费创建完成, 是否立即排课?', '提示', {
 |