diff --git a/src/components/newLesson/audio.vue b/src/components/newLesson/audio.vue
index 0ab2a524328771f04ec7dbafd3f5a5344bfef5bc..ac0c3698bf4434487dfeb2d9f1e92d63198dd516 100644
--- a/src/components/newLesson/audio.vue
+++ b/src/components/newLesson/audio.vue
@@ -400,9 +400,12 @@
             elementID: this.$route.query.elementId.toString()
           });
         }
-        this.$nextTick(()=>{
+        setTimeout(()=>{
           this.$refs.audio.play();
-        })
+        },100)
+        // this.$nextTick(()=>{
+        //   this.$refs.audio.play();
+        // })
       },
       // 播放暂停
       onStop(flag) {