index.wxml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!--pages/account/index.wxml-->
  2. <view class="sg-container">
  3. <view class="sg-index-bg sg-pad">
  4. <view class="sg-flex sg-align-center">
  5. <image class="sg-avatar sg-margin-right" src="{{ userInfo.avatar }}" mode="widthFix"></image>
  6. <view class="sg-white">
  7. <view class="sg-font-lg">{{ userInfo ? userInfo.name : '请登录' }}</view>
  8. <view class="sg-font-small" bindtap="navigate" data-url="{{userInfo ? '/pages/user/index' : '/pages/login/index'}}">{{ userInfo ? '修改用户信息' : '点击按钮进行登录操作' }}</view>
  9. </view>
  10. </view>
  11. <view wx:if="{{!userInfo}}" class="sg-pad-sm sg-font-small sg-margin-tb sg-white sg-deep-blue-bg sg-flex sg-align-center sg-space-between" bindtap="navigate" data-url="/pages/login/index">
  12. <text>你还未登录,暂时不能查看项目相关数据</text>
  13. <van-icon name="arrow" class="sg-icon"></van-icon>
  14. </view>
  15. </view>
  16. <view class="sg-white-bg">
  17. <view class="sg-flex sg-align-center sg-space-between sg-pad sg-bottom-border" bindtap="navigate" data-url="/pages/bind/index">
  18. <view>绑定微信</view>
  19. <van-icon class="sg-icon" name="arrow"></van-icon>
  20. </view>
  21. <view class="sg-flex sg-align-center sg-space-between sg-pad sg-bottom-border" bindtap="navigate" data-url="/pages/password/index">
  22. <view>修改密码</view>
  23. <van-icon class="sg-icon" name="arrow"></van-icon>
  24. </view>
  25. <view class="sg-flex sg-align-center sg-space-between sg-pad sg-bottom-border" bindtap="navigate" data-url="/pages/feedback/index">
  26. <view>用户反馈</view>
  27. <van-icon class="sg-icon" name="arrow"></van-icon>
  28. </view>
  29. <view class="sg-flex sg-align-center sg-space-between sg-pad sg-bottom-border" bindtap="navigate" data-url="/pages/about/index">
  30. <view>关于我们</view>
  31. <van-icon class="sg-icon" name="arrow"></van-icon>
  32. </view>
  33. <view class="sg-flex sg-align-center sg-space-between sg-pad sg-bottom-border" bindtap="logout">
  34. <view>退出登录</view>
  35. <van-icon class="sg-icon" name="arrow"></van-icon>
  36. </view>
  37. </view>
  38. </view>