|
@@ -74,6 +74,8 @@ export default defineComponent({
|
|
|
|
|
|
tnoteShow: false,
|
|
|
loadingSoundFonts: true,
|
|
|
+
|
|
|
+ huaweiPad: navigator?.userAgent?.includes('UAWEIVRD-W09') ? true : false
|
|
|
});
|
|
|
const fingerData = reactive({
|
|
|
relationshipIndex: 0,
|
|
@@ -366,7 +368,7 @@ export default defineComponent({
|
|
|
<Button class={styles.noteBtn} onClick={() => scrollNoteBox("left")}>
|
|
|
<Icon name="arrow-left" />
|
|
|
</Button>
|
|
|
- <div class={[styles.noteContent, browsInfo.ios ? "" : styles.noteContentWrap]}>
|
|
|
+ <div class={[styles.noteContent, browsInfo.ios ? "" : styles.noteContentWrap, data.huaweiPad && styles.huaweiPad]}>
|
|
|
<div ref={noteBoxRef} class={styles.noteBox}>
|
|
|
{data.notes.map((note: IFIGNER_INSTRUMENT_Note, index: number) => {
|
|
|
const steps = new Array(Math.abs(note.step)).fill(1);
|