|
@@ -972,7 +972,7 @@ export default defineComponent({
|
|
|
{playAction.userAnswerStatus === 1 && <div class={[styles.tipsT, styles.playSuccess]}></div>}
|
|
|
{playAction.userAnswerStatus === 2 && <div class={[styles.tipsT, styles.playError]}></div>}
|
|
|
|
|
|
- {data.noteType !== "#c" && orientationDirection.value === 0 && (
|
|
|
+ {(data.noteType !== "#c" && orientationDirection.value === 0 || orientationDirection.value === 1) && (
|
|
|
<Button class={styles.noteBtn} onClick={() => scrollNoteBox("left")}>
|
|
|
<Icon name="arrow-left" />
|
|
|
</Button>
|
|
@@ -1056,7 +1056,7 @@ export default defineComponent({
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- {data.noteType !== "#c" && orientationDirection.value === 0 && (
|
|
|
+ {(data.noteType !== "#c" && orientationDirection.value === 0 || orientationDirection.value === 1) && (
|
|
|
<Button class={styles.noteBtn} onClick={() => scrollNoteBox("right")}>
|
|
|
<Icon name="arrow" />
|
|
|
</Button>
|