xiangqinxiaochengxu/miniprogram/pages/profile/profile.wxml
2026-04-17 10:49:14 +08:00

32 lines
1.3 KiB
Plaintext

<view class="page profile-page">
<view wx:if="{{userInfo}}" class="profile-card">
<view class="profile-top">
<image wx:if="{{userInfo.avatar_url}}" class="avatar" src="{{userInfo.avatar_url}}" mode="aspectFill" />
<view wx:else class="avatar avatar-placeholder">头像</view>
<view class="profile-main">
<view class="nickname">{{userInfo.nicknameText}}</view>
<view class="audit-badge">{{userInfo.auditStatusText}}</view>
</view>
</view>
<view class="profile-hint">认真完善资料,会显著提升活动报名通过率和匹配质量。</view>
</view>
<view wx:if="{{userInfo}}" class="progress-card">
<view class="progress-header">
<text>资料完整度</text>
<text>{{userInfo.profile_completeness}}%</text>
</view>
<view class="progress-track">
<view class="progress-value" style="width: {{userInfo.profile_completeness}}%;"></view>
</view>
<view class="progress-tip">{{userInfo.profile_completeness}}% 完整,继续完善提升匹配率</view>
</view>
<view class="menu-list">
<view class="menu-item" bindtap="goEdit">编辑资料</view>
<view class="menu-item" bindtap="goAudit">审核状态</view>
<view class="menu-item" bindtap="goMyActivities">我的活动</view>
<view class="menu-item" bindtap="goMyMatches">匹配记录</view>
</view>
</view>