|
@@ -11,6 +11,7 @@ import styles from './index.module.less';
|
|
|
import { postMessage } from '@/helpers/native-message';
|
|
|
import icon_title from './images/icon-title.png';
|
|
|
import icon_back from './images/icon-back.png';
|
|
|
+import icon_back1 from './images/icon-back1.png';
|
|
|
import icon_setting from './images/icon-setting.png';
|
|
|
import iconPlay from './images/icon-play.png';
|
|
|
import iconPause from './images/icon-pause.png';
|
|
@@ -247,7 +248,7 @@ export default defineComponent({
|
|
|
);
|
|
|
}
|
|
|
// 引导页
|
|
|
- const {guidanceShow,setGuidanceShow}=useDragGuidance()
|
|
|
+ const { guidanceShow, setGuidanceShow } = useDragGuidance();
|
|
|
return () => (
|
|
|
<div
|
|
|
onClick={() => {
|
|
@@ -354,13 +355,23 @@ export default defineComponent({
|
|
|
}}>
|
|
|
{/* 播放 */}
|
|
|
{state.playPos === 'left' && (
|
|
|
- <div class={styles.play} onClick={handlePlay}>
|
|
|
- {setting.playState === 'pause' ? (
|
|
|
- <img src={iconPause} />
|
|
|
- ) : (
|
|
|
- <img src={iconPlay} />
|
|
|
+ <>
|
|
|
+ {route.query.back === 'show' && (
|
|
|
+ <div
|
|
|
+ class={[styles.play]}
|
|
|
+ onClick={goback}
|
|
|
+ style={{ cursor: 'pointer' }}>
|
|
|
+ <img src={icon_back1} />
|
|
|
+ </div>
|
|
|
)}
|
|
|
- </div>
|
|
|
+ <div class={styles.play} onClick={handlePlay}>
|
|
|
+ {setting.playState === 'pause' ? (
|
|
|
+ <img src={iconPause} />
|
|
|
+ ) : (
|
|
|
+ <img src={iconPlay} />
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
+ </>
|
|
|
)}
|
|
|
{/* 老师端来的时候的设置按钮 */}
|
|
|
{state.platform === 'modal' && state.playPos === 'right' && (
|