|
@@ -19,6 +19,7 @@ import { promisefiyPostMessage } from '/src/helpers/native-message'
|
|
|
import Popups from '..'
|
|
|
import Feedback from '../feedback'
|
|
|
import { useReload } from '../../uses'
|
|
|
+
|
|
|
export const suggestPopup: Ref<any> = ref(null)
|
|
|
export const confirmShow: Ref<boolean> = ref(false)
|
|
|
|
|
@@ -132,7 +133,7 @@ export default defineComponent({
|
|
|
return () => {
|
|
|
return (
|
|
|
<>
|
|
|
- <div>
|
|
|
+ <div class={styles.columnBox}>
|
|
|
<NoticeBar
|
|
|
class={styles.noticebar}
|
|
|
left-icon={InfoIcon}
|
|
@@ -169,8 +170,22 @@ export default defineComponent({
|
|
|
}
|
|
|
</>
|
|
|
}
|
|
|
-
|
|
|
<Divider />
|
|
|
+ <Cell center border={false} title="循环播放">
|
|
|
+ <Switch v-model={SettingState.sett.loop} {...switchProps}>
|
|
|
+ off
|
|
|
+ </Switch>
|
|
|
+ </Cell>
|
|
|
+ <Divider />
|
|
|
+ <Cell center border={false} title="显示指法">
|
|
|
+ <Switch v-model={SettingState.sett.fingering} {...switchProps} onChange={val => {
|
|
|
+ SettingState.sett.fingering = val
|
|
|
+ runtime.event.emit('settingFingeringChange')
|
|
|
+ }
|
|
|
+ }>
|
|
|
+ off
|
|
|
+ </Switch>
|
|
|
+ </Cell>
|
|
|
{/* <Cell center border={false} title="乐谱大小">
|
|
|
<div style={{ display: 'flex' }}>
|
|
|
<RadioGroup
|