|
@@ -777,29 +777,29 @@ export default defineComponent({
|
|
|
const containerBox = computed(() => {
|
|
|
if (state.platform === IPlatform.PC || query.modelType) {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: "",
|
|
|
};
|
|
|
}
|
|
|
if (data.fingeringMode === "scaleMode") {
|
|
|
if (data.subject === "hulusi-flute") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: ".5rem",
|
|
|
};
|
|
|
} else if (data.subject === "piccolo" || data.subject === "baroque-recorder") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: ".5rem",
|
|
|
};
|
|
|
} else if (data.subject === "pan-flute") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: "0",
|
|
|
};
|
|
|
} else if (data.subject === "ocarina") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: "0",
|
|
|
};
|
|
|
} else if (data.subject === "melodica") {
|
|
@@ -816,22 +816,22 @@ export default defineComponent({
|
|
|
} else {
|
|
|
if (data.subject === "hulusi-flute") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: "0rem",
|
|
|
};
|
|
|
} else if (data.subject === "piccolo" || data.subject === "baroque-recorder") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: ".5rem",
|
|
|
};
|
|
|
} else if (data.subject === "pan-flute") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: "0",
|
|
|
};
|
|
|
} else if (data.subject === "ocarina") {
|
|
|
return {
|
|
|
- paddingTop: "1rem",
|
|
|
+ paddingTop: "1.3rem",
|
|
|
paddingBottom: "0",
|
|
|
};
|
|
|
} else if (data.subject === "melodica") {
|
|
@@ -951,7 +951,7 @@ export default defineComponent({
|
|
|
</button>
|
|
|
|
|
|
<div
|
|
|
- class={styles.baseBtn}
|
|
|
+ class={[styles.baseBtn, styles.changeInstrumentBtn]}
|
|
|
onClick={(e) => {
|
|
|
//
|
|
|
// 播放音阶时不能切换
|