index.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isBack="{{true}}" title="个人信息">
  3. <!-- <view slot="content">个人信息</view> -->
  4. </cu-custom>
  5. <view class="info_card">
  6. <view class="prof_item">
  7. <view class="prof_item_label">头像</view>
  8. <view class="prof_imgs">
  9. <image src="{{userInfo.avatar?userInfo.avatar:'/img/my_img1.png'}}" bindtap="uploadImg"></image>
  10. </view>
  11. </view>
  12. <navigator class="info_item" url="/pages/userinfo/editUserName/editUserName?nickName={{userInfo.nickName}}&userId={{userInfo.userId}}">
  13. <view class="info_label">用户名</view>
  14. <view class="info_val">{{userInfo.nickName || '未知'}}</view>
  15. <text class="cuIcon-right lg text-gray"></text>
  16. </navigator>
  17. <navigator class="info_item" url="/pages/userinfo/phone?mobile={{userInfo.mobile}}&userId={{userInfo.userId}}">
  18. <view class="info_label">手机号</view>
  19. <view class="info_val">{{userInfo.mobile || '未知'}}</view>
  20. <text class="cuIcon-right lg text-gray"></text>
  21. </navigator>
  22. <navigator class="info_item" url="/pages/user/pwdEdit">
  23. <view class="info_label">密码</view>
  24. <view class="info_val">*********</view>
  25. <text class="cuIcon-right lg text-gray"></text>
  26. </navigator>
  27. <!-- <navigator class="info_item" url="/pages/user/email?email={{userInfo.email}}&userId={{userInfo.userId}}">
  28. <view class="info_label">邮箱</view>
  29. <view class="info_val">{{userInfo.email || '未知' }}</view>
  30. <text class="cuIcon-right lg text-gray"></text>
  31. </navigator> -->
  32. <view class="info_item" bindtap="goEmail">
  33. <view class="info_label">邮箱</view>
  34. <view class="info_val">{{userInfo.email || '未知' }}</view>
  35. <text class="cuIcon-right lg text-gray"></text>
  36. </view>
  37. </view>