|
@@ -301,19 +301,12 @@ export default defineComponent({
|
|
|
paddingBottom: headerColumnHide.value ? state.fingeringInfo.height : state.fingeringInfo.scaleData?.offset
|
|
|
},
|
|
|
// 横向指法,跟练&评测模式,默认展示贴底展示
|
|
|
- fingerBox: (state.modeType === 'follow' || state.modeType === 'evaluating') ?
|
|
|
- {
|
|
|
- height: state.fingeringInfo.height,
|
|
|
- position: 'absolute',
|
|
|
- bottom: 0,
|
|
|
- width: '100%'
|
|
|
- } :
|
|
|
- headerColumnHide.value ? {
|
|
|
- height: state.fingeringInfo.height
|
|
|
- } : {
|
|
|
- height: state.fingeringInfo.height,
|
|
|
- transform: `scale(${state.fingeringInfo.scaleData?.scale})`
|
|
|
- }
|
|
|
+ fingerBox: headerColumnHide.value ? {
|
|
|
+ height: state.fingeringInfo.height
|
|
|
+ } : {
|
|
|
+ height: state.fingeringInfo.height,
|
|
|
+ transform: `scale(${state.fingeringInfo.scaleData?.scale})`
|
|
|
+ }
|
|
|
};
|
|
|
} else {
|
|
|
console.log('指法',state.playBtnDirection,state.platform)
|