|  | @@ -55,6 +55,8 @@
 | 
	
		
			
				|  |  |        @loadedmetadata="onLoadedmetadata"
 | 
	
		
			
				|  |  |        @timeupdate="onTimeupdate"
 | 
	
		
			
				|  |  |        @canplaythrough="oncanplaythrough"
 | 
	
		
			
				|  |  | +      @error="handleError"
 | 
	
		
			
				|  |  | +      :key="mp3"
 | 
	
		
			
				|  |  |      />
 | 
	
		
			
				|  |  |    </div>
 | 
	
		
			
				|  |  |  </template>
 | 
	
	
		
			
				|  | @@ -232,6 +234,12 @@ export default {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |        // }, 10000);
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  | +    handleError(res) {
 | 
	
		
			
				|  |  | +      let audioId = this.audioId;
 | 
	
		
			
				|  |  | +      this.$forceUpdate();
 | 
	
		
			
				|  |  | +      this.$refs[audioId].load();
 | 
	
		
			
				|  |  | +      this.PlayAudio();
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |      // 点击 拖拽播放音频
 | 
	
		
			
				|  |  |      changeCurrentTime(value) {
 | 
	
		
			
				|  |  |        let audioId = this.audioId;
 |