小修改

This commit is contained in:
kron
2025-12-26 16:16:05 +08:00
parent e3752e6fe2
commit 08c4ef0625
5 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ const guides = [
},
];
const done = ref(false);
const done = ref(true);
const onComplete = async () => {
await laserCloseAPI();

View File

@@ -75,7 +75,7 @@ onMounted(() => {
<template>
<Container title="用户信息">
<view :style="{ width: '100%' }">
<scroll-view :style="{ width: '100%' }">
<UserHeader />
<view class="container">
<UserItem title="用户名">{{ user.nickName }}</UserItem>
@@ -142,7 +142,7 @@ onMounted(() => {
v-if="showLogout"
/>
</view>
</view>
</scroll-view>
</Container>
</template>