my.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--pages/my/my.wxml-->
  2. <wxs src="./my.wxs" module="tools" />
  3. <view class="personal-center">
  4. <view class="personal-panel">
  5. <image class="topHeaderBg" src="../../static/images/top.png" mode="heightFix" />
  6. <view class="info-box">
  7. <t-avatar image="{{ isLogin ? userInfo.avatarUrl :avatar}}" class="avatar" size="large" />
  8. <view class="personal-info" wx:if="{{isLogin}}" bindtap="handleToPersonalEdit">
  9. <text class="title">{{ (userInfo.nickName && userInfo.nickName.length > 14 ) ? tools.subStr(userInfo.nickName,0,14)+'...': userInfo.nickName || ('微信用户' + tools.subStr(userInfo.wxUserId,0,8))}}</text>
  10. <text class="desc">点击查看个人信息></text>
  11. </view>
  12. <view class="personal-info" wx:else>
  13. <text class="title" bindtap="login">登录/注册</text>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="cell-list-contianer">
  18. <t-cell title="我的带看" arrow url="/pages/myScene/myScene">
  19. <t-icon name="root-list" color="#ed7b2f" slot="left-icon" />
  20. </t-cell>
  21. <t-cell title="关注公众号" url="/pages/mp/mp" jump-type="navigateTo" note="获取最新资讯,咨询" arrow>
  22. <t-icon name="logo-wechat" color="#ed7b2f" slot="left-icon" />
  23. </t-cell>
  24. <t-cell title="客服电话" note="0756-6996790-800" arrow bindtap="makeCall">
  25. <t-icon name="call" color="#ed7b2f" slot="left-icon" />
  26. </t-cell>
  27. <t-cell title="关于我们" url="/pages/about/about" jump-type="navigateTo" arrow>
  28. <t-icon name="precise-monitor" color="#ed7b2f" slot="left-icon" />
  29. </t-cell>
  30. </view>
  31. <t-toast id="t-toast" />
  32. </view>