my.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isBack="{{false}}" title="我的">
  3. <!-- <view slot="content">我的</view> -->
  4. </cu-custom>
  5. <view class="my_top"></view>
  6. <view class="my_user">
  7. <image src="{{user.avatar?user.avatar:'/img/my_img1.png'}}"></image>
  8. <navigator url="/pages/login/login" class="my_login" wx:if="{{!islogin}}">登录/注册</navigator>
  9. <view class="my_user_info" wx:if="{{islogin}}" bindtap="goSetMobileEmail">
  10. <view class="my_user_txt">
  11. <view>{{user.nickName || "未知"}}</view>
  12. </view>
  13. <text class="cuIcon-right lg text-gray"></text>
  14. </view>
  15. </view>
  16. <view class="my_action">
  17. <view class="my_card">
  18. <view class="my_action_tit">设置与服务</view>
  19. <view class="my_action_item" bindtap="goChangeRole">
  20. <image src="/img/msgId.png"></image>
  21. <view>切换身份</view>
  22. <text class="my_action_txt">{{roleMap[user.loginRole]}}</text>
  23. <text class="cuIcon-right lg text-gray"></text>
  24. </view>
  25. </view>
  26. <!-- <view class="my_card">
  27. <view class="my_action_item" bindtap="goMessage">
  28. <image src="/img/msg.png"></image>
  29. <view>消息</view>
  30. <text class="cuIcon-right lg text-gray"></text>
  31. </view>
  32. </view> -->
  33. <view class="my_card">
  34. <view class="my_action_item" bindtap="goSetting">
  35. <image src="/img/my_icon1.png"></image>
  36. <view>设置</view>
  37. <text class="cuIcon-right lg text-gray"></text>
  38. </view>
  39. </view>
  40. <!-- <view class="my_card">
  41. <view class="my_action_item">
  42. <image src="/img/my_icon2.png"></image>
  43. <view>检查更新</view>
  44. <text class="my_action_vs">V1.0</text>
  45. </view>
  46. </view> -->
  47. <view class="my_exit" bindtap="exitLogin" wx:if="{{islogin}}">退出</view>
  48. </view>
  49. <cu-tabBar selected="{{3}}"></cu-tabBar>