|
@@ -108,7 +108,7 @@ export const onChangeModelType = (type: IModelType) => {
|
|
|
metronomeData.cursorMode = 1
|
|
|
}
|
|
|
if (type === 'evaluation') {
|
|
|
- RuntimeUtils.changeSpeed(detailState.activeDetail?.originalSpeed, false)
|
|
|
+ // RuntimeUtils.changeSpeed(detailState.activeDetail?.originalSpeed, false)
|
|
|
// 评测模式
|
|
|
runtime.evaluatingStatus = true
|
|
|
modelType.value = type
|
|
@@ -419,7 +419,7 @@ export default defineComponent({
|
|
|
overlay={false}
|
|
|
placement="bottom"
|
|
|
class={styles.popover}
|
|
|
- show={show.value && runtime.speedShow && !(runtime.evaluatingStatus || runtime.playState === 'play')}
|
|
|
+ show={show.value && runtime.speedShow && !(runtime.playState === 'play')}
|
|
|
// @ts-ignore
|
|
|
onUpdate:show={(show: boolean) => (runtime.speedShow = show)}
|
|
|
vSlots={{
|
|
@@ -427,7 +427,8 @@ export default defineComponent({
|
|
|
<Button
|
|
|
data-step="m4"
|
|
|
class={[styles.button, styles.hasText, styles.speedButton]}
|
|
|
- disabled={runtime.evaluatingStatus || runtime.playState === 'play'}
|
|
|
+ // disabled={runtime.evaluatingStatus || runtime.playState === 'play'}
|
|
|
+ disabled={runtime.playState === 'play'}
|
|
|
onClick={() => {
|
|
|
speedRef.value?.refUpdateSpeed(runtime.playIngSpeed || runtime.speed)
|
|
|
runtime.speedShow = !runtime.speedShow
|