|
@@ -589,7 +589,7 @@ export default defineComponent({
|
|
|
return () => (
|
|
|
<>
|
|
|
<div
|
|
|
- class={[styles.headerTop]}
|
|
|
+ class={[styles.headerTop, state.platform === IPlatform.PC && state.musicScoreBtnDirection === "left" ? styles.headerTopRight : ""]}
|
|
|
onClick={(e: Event) => {
|
|
|
e.stopPropagation();
|
|
|
if (state.platform === IPlatform.PC) {
|
|
@@ -644,7 +644,7 @@ export default defineComponent({
|
|
|
{/* 模式提醒 */}
|
|
|
{
|
|
|
state.modeType === "practise" &&
|
|
|
- <div class={[styles.modeWarn, "practiseModeWarn"]}>
|
|
|
+ <div class={[styles.modeWarn, "practiseModeWarn", state.platform === IPlatform.PC && state.musicScoreBtnDirection === "left" ? styles.modeWarnRight : ""]}>
|
|
|
<img src={state.playType === "play" ? headImg("perform1.png") : headImg("sing1.png")} />
|
|
|
<div>{state.playType === "play" ? "演奏场景" : "演唱场景"}</div>
|
|
|
</div>
|