person.wxml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!--pages/person/person.wxml-->
  2. <view class="container">
  3. <view class="person card" wx:if="{{hasUserInfo}}" >
  4. <view class="person-info">
  5. <view class="user-name f18 c-202020" bindtap = "gotoPersonInfo">
  6. {{userInfo.nickName}}
  7. <!-- <open-data type="userNickName"></open-data> -->
  8. <image class="next" src="../../images/icons/next.png" >
  9. </image>
  10. </view>
  11. <view class="tel c-707070 fw300">{{userInfo.mobile}}</view>
  12. <!-- <view> 余额:{{userInfo.money}}</view> -->
  13. <button open-type="getPhoneNumber" catchgetphonenumber="getMobile" class="login-btn" wx:if="{{!userInfo.mobile}}" >获取手机号</button>
  14. </view>
  15. <view class="head-img">
  16. <image class="" src="{{userInfo.avatarUrl}}">
  17. </image>
  18. <!-- <open-data type="userAvatarUrl"></open-data> -->
  19. </view>
  20. </view>
  21. <view wx:else class="user-login">
  22. <view class="person-info">
  23. <view class="user-name f18 c-202020">
  24. <button bindtap="getInfo" class="login-btn"
  25. style="height: 100px;width: 200px;">请点击登录</button>
  26. <image class="next" src="../../images/icons/next.png">
  27. </image>
  28. </view>
  29. </view>
  30. <view class="head-img">
  31. <image class="defult-user" src="../../images/icons/defult-user.png">
  32. </image>
  33. </view>
  34. </view>
  35. <view class="order" bindtap = "gotoOrder">
  36. <image class="icons" src="../../images/new/coupon.png">
  37. </image>
  38. <view class="order-text">我的优惠券
  39. </view>
  40. <image class="next-gray" src="../../images/icons/next-gray.png">
  41. </image>
  42. </view>
  43. <!-- <view class="assess" bindtap = "gotoComment">
  44. <image class="icons" src="../../images/icons/assess.png"></image>
  45. <view class="assess-text">我的点评
  46. </view>
  47. <image class="next-gray" src="../../images/icons/next-gray.png">
  48. </image>
  49. </view> -->
  50. <view class="assess" bindtap = "gotoMoney" wx:if="{{canWriteOff == 'yes'}}">
  51. <image class="icons" src="../../images/new/scan.png" style="margin: 40rpx 30rpx;width: 40rpx;height: 40rpx;"></image>
  52. <view class="assess-text">核销
  53. </view>
  54. <image class="next-gray" src="../../images/icons/next-gray.png">
  55. </image>
  56. </view>
  57. </view>