settings.wxml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!--pages/settings/settings.wxml-->
  2. <view class="container">
  3. <view class="header">
  4. <text class="title">设置</text>
  5. </view>
  6. <view class="form-section">
  7. <view class="form-item">
  8. <text class="label">用户名</text>
  9. <input
  10. class="input"
  11. type="text"
  12. value="{{userInfo.username}}"
  13. disabled
  14. placeholder="用户名不可修改"
  15. />
  16. <text class="hint">用户名不可修改</text>
  17. </view>
  18. <view class="form-item">
  19. <text class="label">昵称</text>
  20. <input
  21. class="input"
  22. type="text"
  23. value="{{userInfo.nickname || ''}}"
  24. placeholder="请输入昵称"
  25. bindinput="onNicknameInput"
  26. maxlength="20"
  27. />
  28. </view>
  29. <view class="form-item">
  30. <text class="label">头像URL</text>
  31. <input
  32. class="input"
  33. type="text"
  34. value="{{userInfo.avatarUrl || ''}}"
  35. placeholder="请输入头像URL"
  36. bindinput="onAvatarUrlInput"
  37. />
  38. </view>
  39. </view>
  40. <view class="button-section">
  41. <button class="save-btn" bindtap="saveUserInfo" loading="{{saving}}">保存</button>
  42. </view>
  43. </view>