mine.wxml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <view>
  2. <view wx:if='{{!isLogin}}' class='beforeLoginview' bindtap='btnClick' id='{{idBLV}}'>
  3. <view><image src='../../img/common_header_boy.png' class='headerImg'></image></view>
  4. <view class='menuText2' style='width:auto;' wx:if="{{canIUse}}"><button open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo" style='height:60rpx;text-align:center;font-size:25rpx;margin:30rpx 0 0 10rpx;' bindtap='btnClick' id='{{idWxlogin}}'>微信授权登录</button></view>
  5. <view wx:else>请升级微信版本</view>
  6. </view>
  7. <view wx:if='{{isLogin}}'class='headerView' >
  8. <view class='newHeaderView'>
  9. <view wx:if='{{headerImg.length == 0 || headerImg == null}}'><image class='headerImg' src='{{wxHeader}}' bindtap='btnClick' id='{{idHeader}}' > </image></view>
  10. <view wx:else><image class='headerImg' src='{{headerImg}}'> </image></view>
  11. <view class='loginname'>{{wxNickname}}</view>
  12. <view wx:if='{{!isregistered}}' class='loginname' style='text-decoration:underline;' bindtap='btnClick' id='{{idgoBind}}'> 关联手机(企业信息)</view>
  13. </view>
  14. <view class='headerdata commonHview' wx:if='{{isLogin}}'>
  15. <view style='width:50%;'>
  16. <view class='h_data_left' wx:if='{{curmonth_points>0}}'>本月当前积分: <text class='h_data_right' >{{curmonth_points}}</text></view>
  17. <view class='h_data_left' wx:else>本月当前积分: <text class='h_data_right1' style='color:#FF0000;'>{{curmonth_points}}</text></view>
  18. <view class='h_data_left'>本月当前排名: <text class='h_data_right'>{{curmonth_rank}}</text></view>
  19. </view>
  20. <view style='width:50%;'>
  21. <view class='h_data_left'>上月积分:<text class='h_data_right'>{{lastmonth_points}}</text></view>
  22. <view class='h_data_left'>上月排名:<text class='h_data_right'>{{lastmonth_rank}}</text></view>
  23. </view>
  24. </view>
  25. </view>
  26. <view style='height:32rpx;width:100%;background-color:#F2F2F2;'></view>
  27. <view class='commonHview' >
  28. <view class='menuhview' bindtap='btnClick' id='{{idMyInfo}}'>
  29. <view class='menuText1' >个人资料</view>
  30. </view>
  31. <view style='width:5%;' ><image class='nextImg' src='../../img/next.png'> </image></view>
  32. </view>
  33. <view class='commonhline' style='height:3rpx;'></view>
  34. <view class='commonHview' >
  35. <view class='menuhview' bindtap='btnClick' id='{{idCompanyInfo}}'>
  36. <view class='menuText1' >企业信息</view>
  37. </view>
  38. <view style='width:5%;' ><image class='nextImg' src='../../img/next.png'> </image></view>
  39. </view>
  40. <view class='commonhline' style='height:3rpx;'></view>
  41. <view class='commonHview' >
  42. <view class='menuhview' bindtap='btnClick' id='{{idAbout}}'>
  43. <view class='menuText1' >关于</view>
  44. </view>
  45. <view style='width:5%;' ><image class='nextImg' src='../../img/next.png'> </image></view>
  46. </view>
  47. <view class='commonhline' style='height:3rpx;'></view>
  48. <view class='commonHview' >
  49. <view class='menuhview' bindtap='btnClick' id='{{idTypeRank}}'>
  50. <view class='menuText1' >类别排名</view>
  51. </view>
  52. <view style='width:5%;' ><image class='nextImg' src='../../img/next.png'> </image></view>
  53. </view>
  54. <view class='commonhline' style='height:3rpx;'></view>
  55. </view>