审核中

This commit is contained in:
18631081161 2026-01-29 17:19:59 +08:00
parent dc081ce012
commit 79ad42e43c

View File

@ -35,7 +35,11 @@
</view>
<!-- 资料卡片 -->
<view class="profile-card" v-if="!userInfo.isProfileCompleted">
<view class="profile-card auditing" v-if="userStore.isProfileAuditing">
<text class="tip-text">资料审核中</text>
<button class="btn-fill disabled" disabled>审核中</button>
</view>
<view class="profile-card" v-else-if="!userInfo.isProfileCompleted">
<text class="tip-text">您还未填写孩子的相亲资料</text>
<button class="btn-fill" @click="handleEditProfile">立即填写</button>
</view>
@ -344,6 +348,7 @@ export default {
statusBarHeight,
isLoggedIn,
userInfo,
userStore,
interactCounts,
defaultAvatar,
memberIconUrl,
@ -524,6 +529,18 @@ export default {
&::after {
border: none;
}
&.disabled {
background: #ccc;
color: #999;
}
}
}
//
.profile-card.auditing {
.tip-text {
color: #ff9800;
}
}