Selaa lähdekoodia

Merge branch 'feature-wxl-newVersion' into ktyq-test-new

lex-xin 1 vuosi sitten
vanhempi
commit
66e1de7bdb
1 muutettua tiedostoa jossa 7 lisäystä ja 2 poistoa
  1. 7 2
      src/page-instrument/header-top/index.tsx

+ 7 - 2
src/page-instrument/header-top/index.tsx

@@ -559,8 +559,13 @@ export default defineComponent({
       if (res?.data?.api === "setPlayState") {
         togglePlay("paused", true);
       }
-      if (res?.data?.api === "startPlayState") {
-        togglePlay("play");
+      if(res?.data?.api === 'togglePlayState') {
+        if(state.playState === "play") {
+          togglePlay("paused");
+        }
+        if(state.playState === 'paused') {
+          togglePlay("play");
+        }
       }
       // 上课页面,按钮方向
       if (res?.data?.api === "imagePos") {