my.wxml 1.3 KB

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