user.vue 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <view class="user-page-container">
  3. <TuanAppShim bg="transparent"></TuanAppShim>
  4. <view
  5. style="position: relative;background: linear-gradient(138deg, #FFFCE7 13%, #F7EBDF 54%);background-size: cover;padding: 48rpx 32rpx 20rpx;"
  6. >
  7. <view style="display: flex;align-items: center;justify-content: space-between;margin-top: 38rpx;">
  8. <Avatar
  9. margin="0 32rpx 0 0" :size="49"
  10. :src="userInfo.token ? common.seamingImgUrl(userInfo.headImage) : require('../../static/images/new-user/default-user-avatar.png')"
  11. >
  12. </Avatar>
  13. <view style="flex: 1;">
  14. <view v-if="!userInfo.token">
  15. <view style="font-size: 28rpx;font-weight: bold;line-height: 42rpx;">您好!</view>
  16. <view style="font-size: 24rpx;line-height: 36rpx;margin-top: 6rpx;">
  17. 您目前暂未登录,请<text style="color: #ffc117;" @click="go('/pages/login/login')">
  18. 前往登录
  19. </text>
  20. </view>
  21. </view>
  22. <view v-else style="display: flex;justify-content: space-between;align-items: center;">
  23. <view style="color: #222229;">
  24. <view style="display: flex;align-items: flex-end;">
  25. <view style="margin-right: 12rpx;font-size: 34rpx;font-weight: bold;">
  26. {{ userInfo.name || userInfo.wechatName || '--' }}
  27. </view>
  28. </view>
  29. <view
  30. style="display: flex;align-items: center;align-items: center;box-sizing: border-box;margin-top: 12rpx;flex-wrap: wrap;font-size: 20rpx;"
  31. >
  32. <view style="padding: 6rpx 20rpx;margin-right: 16rpx;background-color: #ffffff;border-radius: 18rpx;">
  33. ID:{{ userInfo.buyerUserId }}
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. <view v-if="userInfo.token" style="margin-top: 44rpx;">
  42. <tui-button type="blue" plain :size="40" width="650rpx" height="88rpx" margin="0 auto" @click="handleQuit">
  43. 退出登录
  44. </tui-button>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. import { mapGetters } from 'vuex'
  50. export default {
  51. name: 'User',
  52. onShow() {
  53. this.init()
  54. },
  55. data() {
  56. return {
  57. }
  58. },
  59. computed: {
  60. ...mapGetters([ 'userInfo' ])
  61. },
  62. methods: {
  63. init() {
  64. // if (this.isLogin()) {
  65. this.$store.dispatch('auth/refrshUserInfoAction')
  66. // }
  67. },
  68. handleQuit() {
  69. this.$store.dispatch('auth/logoutAction', true)
  70. }
  71. }
  72. }
  73. </script>
  74. <style lang="less" scoped>
  75. .user-page-container {
  76. min-height: 100vh;
  77. padding: 0 0 120rpx;
  78. background-color: #fefefe;
  79. box-sizing: border-box;
  80. }
  81. </style>