|
@@ -1,5 +1,5 @@
|
|
|
import { computed, defineComponent, onMounted, reactive, Transition } from "vue";
|
|
|
-import state, { EnumMusicRenderType, handleSelection, skipNotePlay } from "/src/state";
|
|
|
+import state, { EnumMusicRenderType, handleSelection, skipNotePlay, IPlatform } from "/src/state";
|
|
|
import styles from "./index.module.less";
|
|
|
import { metronomeData } from "/src/helpers/metronome";
|
|
|
import { evaluatingData } from "../evaluating";
|
|
@@ -229,6 +229,7 @@ export default defineComponent({
|
|
|
styles.position,
|
|
|
showClass.value(item),
|
|
|
scoreItem ? `scoreItemLeve${scoreItem.leve}` : "",
|
|
|
+ state.platform === IPlatform.PC ? styles.linePC : ''
|
|
|
]}
|
|
|
style={item.staveBox}
|
|
|
onClick={() => handleSelection(item)}
|