细节调整

This commit is contained in:
kron
2025-07-23 16:01:16 +08:00
parent cfb1b8cd7f
commit 46ec2ade9a
7 changed files with 75 additions and 47 deletions

View File

@@ -23,6 +23,9 @@ onMounted(() => {
if (props.lvl > user.value.lvl) {
updateUser({ ...user.value, lvl: props.lvl });
}
setTimeout(() => {
props.onClose();
}, 1500);
});
</script>
@@ -51,7 +54,7 @@ onMounted(() => {
<text>射灵{{ lvl }}</text>
<text>!</text>
</view>
<button @click="onClose" hover-class="none">关闭</button>
<!-- <button @click="onClose" hover-class="none">关闭</button> -->
</view>
</template>