66 lines
2.1 KiB
Plaintext
66 lines
2.1 KiB
Plaintext
<!--个人中心页面-->
|
||
<custom-navbar title="个人中心" show-back="{{false}}" />
|
||
<view class="container" style="margin-top: {{navbarHeight}}px;">
|
||
<!-- 用户信息卡片 -->
|
||
<view class="profile-header card">
|
||
<view class="user-info" bindtap="{{!isLogin ? 'handleLogin' : ''}}">
|
||
<image class="avatar-large" src="{{userInfo.avatar_url || '/images/default-avatar.png'}}" />
|
||
<view class="user-detail">
|
||
<text class="nickname">{{userInfo.nickname || '未登录'}}</text>
|
||
<text class="user-id" wx:if="{{isLogin}}">ID: {{userInfo.id}}</text>
|
||
</view>
|
||
</view>
|
||
|
||
<button wx:if="{{!isLogin}}" class="btn-primary" bindtap="handleLogin">
|
||
点击登录
|
||
</button>
|
||
<button wx:else class="btn-edit" bindtap="editProfile">
|
||
编辑资料
|
||
</button>
|
||
</view>
|
||
|
||
|
||
|
||
<!-- 功能菜单 -->
|
||
<view class="menu-card card">
|
||
<view class="menu-list">
|
||
<!--<view class="menu-item" bindtap="viewStats">
|
||
<view class="menu-icon">📊</view>
|
||
<text class="menu-text">个人统计</text>
|
||
<text class="menu-arrow">></text>
|
||
</view>-->
|
||
|
||
<view class="menu-item" bindtap="viewAllSessions">
|
||
<view class="menu-icon">📝</view>
|
||
<text class="menu-text">全部牌局</text>
|
||
<text class="menu-arrow">></text>
|
||
</view>
|
||
|
||
<view class="menu-item" bindtap="showAbout">
|
||
<view class="menu-icon">ℹ️</view>
|
||
<text class="menu-text">关于我们</text>
|
||
<text class="menu-arrow">></text>
|
||
</view>
|
||
|
||
<!--<view class="menu-item" bindtap="contactService">
|
||
<view class="menu-icon">💬</view>
|
||
<text class="menu-text">联系客服</text>
|
||
<text class="menu-arrow">></text>
|
||
</view>-->
|
||
</view>
|
||
</view>
|
||
<view class="menu-card card">
|
||
<view class="menu-item">
|
||
<view class="menu-icon"></view>
|
||
<text class="menu-text">推荐小程序</text>
|
||
<text class="menu-arrow">></text>
|
||
</view>
|
||
<jdwx-link></jdwx-link>
|
||
</view>
|
||
|
||
<!-- 未登录提示 -->
|
||
|
||
</view>
|
||
<!-- 自定义TabBar -->
|
||
<custom-tabbar selected="{{2}}" />
|