index.wxml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <view class="containt">
  2. <view class="userinfo">
  3. <block wx:if="{{!hasUserInfo}}">
  4. <image class="userinfo-avatar" src="http://ro7r875ut.hn-bkt.clouddn.com/default-icon.png" mode="cover"></image>
  5. <button class="login-btn" open-type="getUserInfo" bindtap="getUserProfile" style="margin:20rpx;padding: 0;height: 128rpx;line-height: 128rpx;text-align: left;" bindgetuserinfo="getUserInfo">
  6. 点击登录</button>
  7. </block>
  8. <block wx:else>
  9. <image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatar}}" mode="cover"></image>
  10. <view class="userphone">
  11. <view>
  12. <text class="nick_name">{{userInfo.nick_name}}</text>
  13. <image class="authentication" wx:if="{{authentication}}" src="http://ro7r875ut.hn-bkt.clouddn.com/authentication.png" />
  14. <image class="authentication" wx:else="" src="http://ro7r875ut.hn-bkt.clouddn.com/unverified.png" />
  15. </view>
  16. <text class="user_phone">{{phone}}</text>
  17. </view>
  18. </block>
  19. </view>
  20. <view class="content-wrapper">
  21. <view class='order-group-wrapper'>
  22. 基本信息
  23. </view>
  24. <view class="order_list">
  25. <block wx:for="{{basicList}}" wx:key="name">
  26. <navigator url="{{item.url}}">
  27. <image src="{{item.image}}" class="basicPic" />
  28. <text>{{item.name}}</text>
  29. </navigator>
  30. </block>
  31. </view>
  32. </view>
  33. <view class="otherList">
  34. <navigator class="otherItem" wx:for="{{otherList}}" wx:key="name" url="{{item.url}}">
  35. <image src="{{item.image}}" class="otherPic" />
  36. <view class="otherText">
  37. <text>{{item.name}}</text>
  38. <t-icon prefix="wr" name="arrow_right" size="36rpx" />
  39. </view>
  40. </navigator>
  41. <button open-type="contact" style="margin-left:4%;margin-right: 4%;width: 42%;padding: 0;" bindcontact="handleContact" session-from="sessionFrom" class="otherItem">
  42. <image src="http://ro7r875ut.hn-bkt.clouddn.com/callservice.png" class="otherPic" style="display: flex;" />
  43. <view class="otherText">
  44. <text>联系客服</text>
  45. <t-icon prefix="wr" name="arrow_right" size="36rpx" />
  46. </view>
  47. </button>
  48. </view>
  49. </view>
  50. <tabbar tabbar="{{tabbar}}" unreadCount="{{unreadCountMine}}">
  51. </tabbar>