You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SCASS_project/profile/profile.wxml

14 lines
506 B

<view class="profile-page">
<!-- 个人信息展示部分,仅显示头像 -->
<view class="profile-header">
<view class="avatar-container">
<image class="avatar" src="{{avatarUrl}}" mode="aspectFill" />
</view>
</view>
<!-- 功能按钮,仅保留查看上报和退出登录功能 -->
<view class="actions">
<button class="action-btn" bindtap="viewLogs">查看上报</button>
<button class="action-btn logout-btn" bindtap="logout">退出登录</button>
</view>
</view>