细节调整

This commit is contained in:
kron
2025-07-11 00:47:34 +08:00
parent e764160633
commit 566f07080a
17 changed files with 113 additions and 110 deletions

View File

@@ -83,16 +83,16 @@ onUnmounted(() => {
const nextStep = async () => {
if (step.value === 0) {
step.value = 1;
title.value = "凹造型";
title.value = "-凹造型";
} else if (step.value === 1) {
// btnDisabled.value = true;
step.value = 2;
title.value = "感知距离";
title.value = "-感知距离";
} else if (step.value === 2) {
step.value = 3;
title.value = "小试牛刀";
title.value = "-小试牛刀";
} else if (step.value === 3) {
title.value = "新手试炼场";
title.value = "小试牛刀";
await createPractise(total);
scores.value = [];
step.value = 4;
@@ -208,7 +208,7 @@ const onClose = () => {
/>
<TestDistance v-if="step === 2" :guide="false" />
<view
class="infos"
class="user-row"
v-if="step === 4"
:style="{ marginBottom: step === 2 ? '40px' : '0' }"
>
@@ -256,15 +256,4 @@ const onClose = () => {
width: calc(100% - 20px);
margin: 0 10px;
}
.infos {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 15px;
padding-top: 20px;
}
.infos > text {
font-size: 20px;
color: #fed847;
}
</style>