29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
<!-- pages/mine/index.wxml -->
|
|
<view class="user-container">
|
|
<!-- 用户信息部分 -->
|
|
<view class="user-info" bindtap="goToEditProfile">
|
|
<t-avatar class="avatar" size="large" icon="user" image="{{userInfo.avatar || ''}}"></t-avatar>
|
|
<view class="user-detail">
|
|
<view class="username">{{userInfo.nickname || '未登录'}}</view>
|
|
<view class="user-id">@{{userInfo.username || ''}}</view>
|
|
<view class="user-role">{{userInfo.user_status === 1 ? '用户' : (userInfo.user_status === 2 ? '管理员' : '待审核')}}</view>
|
|
</view>
|
|
<view class="edit-icon" wx:if="{{isLoggedIn}}">
|
|
<t-icon name="edit" size="36rpx" color="#0052d9" />
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 功能列表 -->
|
|
<view class="function-list">
|
|
<t-cell-group>
|
|
<t-cell title="个人信息" hover left-icon="user" bindtap="goToEditProfile" arrow />
|
|
<t-cell title="系统设置" hover left-icon="setting" url="" arrow />
|
|
<t-cell title="关于我们" hover left-icon="info-circle" url="" arrow />
|
|
</t-cell-group>
|
|
</view>
|
|
|
|
<!-- 注销按钮 -->
|
|
<view class="logout-container" wx:if="{{isLoggedIn}}">
|
|
<t-button theme="danger" block size="large" bind:tap="handleLogout">注销登录</t-button>
|
|
</view>
|
|
</view> |