|
@@ -78,7 +78,7 @@ export const headTopData = reactive({
|
|
|
state.playIngSpeed = state.originSpeed;
|
|
|
handleStartEvaluat();
|
|
|
// 开发模式,把此处打开
|
|
|
- // state.modeType = "evaluating"
|
|
|
+ state.modeType = "evaluating"
|
|
|
// evaluatingData.rendered = true;
|
|
|
// evaluatingData.soundEffectMode = true;
|
|
|
} else if (value === "follow") {
|
|
@@ -328,7 +328,7 @@ export default defineComponent({
|
|
|
/** 选段按钮 */
|
|
|
const selectBtn = computed(() => {
|
|
|
// 选择模式 不显示
|
|
|
- if (headTopData.modeType !== "show" || ["evaluating", "follow"].includes(state.modeType)) return { display: false, disabled: true };
|
|
|
+ if (headTopData.modeType !== "show" || ["follow"].includes(state.modeType)) return { display: false, disabled: true };
|
|
|
// 音频播放中 禁用
|
|
|
if (state.playState === "play") return { display: true, disabled: true };
|
|
|
|
|
@@ -721,7 +721,7 @@ export default defineComponent({
|
|
|
<img style={{ display: state.section.length === 2 ? "" : "none" }} class={styles.iconBtn} src={headImg(`section2.png`)} />
|
|
|
<span>选段</span>
|
|
|
</div>
|
|
|
- {state.modeType !== "evaluating" && (
|
|
|
+ {(
|
|
|
<>
|
|
|
<div
|
|
|
style={{ display: metronomeBtn.value.display ? "" : "none" }}
|