profile.wxml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!--pages/profile/profile.wxml-->
  2. <view class="container" style="{{pageHeight ? 'height: ' + pageHeight + 'rpx;' : ''}}">
  3. <!-- 用户信息 -->
  4. <view class="user-section">
  5. <view class="user-header">
  6. <image class="avatar" src="{{userInfo.avatarUrl || 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'}}" mode="aspectFill"></image>
  7. <view class="user-info">
  8. <view class="nickname-row">
  9. <text class="nickname">{{userInfo.nickname || userInfo.username || '用户'}}</text>
  10. <text class="vip-badge" wx:if="{{userInfo.memberLevel === 1}}">VIP</text>
  11. </view>
  12. <view class="username">用户名:{{userInfo.username}}</view>
  13. </view>
  14. </view>
  15. </view>
  16. <!-- 功能菜单 -->
  17. <view class="menu-section">
  18. <view class="menu-item" bindtap="goToBookshelf">
  19. <text class="menu-icon">📚</text>
  20. <text class="menu-text">我的书架</text>
  21. <text class="menu-arrow">></text>
  22. </view>
  23. <view class="menu-item" bindtap="goToHistory">
  24. <text class="menu-icon">📖</text>
  25. <text class="menu-text">阅读历史</text>
  26. <text class="menu-arrow">></text>
  27. </view>
  28. <view class="menu-item" bindtap="goToChat">
  29. <text class="menu-icon">💬</text>
  30. <text class="menu-text">老舅AI智能客服</text>
  31. <text class="menu-arrow">></text>
  32. </view>
  33. <view class="menu-item" bindtap="goToSettings">
  34. <text class="menu-icon">⚙️</text>
  35. <text class="menu-text">设置</text>
  36. <text class="menu-arrow">></text>
  37. </view>
  38. </view>
  39. <!-- 退出登录 -->
  40. <view class="logout-section">
  41. <button class="logout-btn" bindtap="logout">退出登录</button>
  42. </view>
  43. </view>