s-user-card.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <!-- 装修用户组件:用户卡片 -->
  2. <template>
  3. <view class="ss-user-info-wrap ss-p-t-50">
  4. <view class="ss-flex ss-col-center ss-row-between ss-m-b-20">
  5. <view class="left-box ss-flex ss-col-center ss-m-l-36">
  6. <view class="avatar-box ss-m-r-24">
  7. <image class="avatar-img" :src="
  8. isLogin
  9. ? sheep.$url.cdn(userInfo.avatar)
  10. : sheep.$url.static('/static/img/shop/default_avatar.png')
  11. " mode="aspectFill" @tap="sheep.$router.go('/pages/user/info')"></image>
  12. </view>
  13. <view>
  14. <view class="nickname-box ss-flex ss-col-center">
  15. <view class="nick-name ss-m-r-20">{{ userInfo?.nickname || nickname }}</view>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="right-box ss-m-r-30">
  20. <button class="ss-reset-button" style="margin-right: 20rpx;">
  21. <text class="cicon-service-o"></text>
  22. </button>
  23. <button class="ss-reset-button" @tap="sheep.$router.go('/pages/user/setting')">
  24. <text class="cicon-settings-o"></text>
  25. </button>
  26. </view>
  27. </view>
  28. <!-- 提示绑定手机号 先隐藏 yudao 需要再修改 -->
  29. <view
  30. class="bind-mobile-box ss-flex ss-row-between ss-col-center"
  31. v-if="isLogin && !userInfo.mobile"
  32. >
  33. <view class="ss-flex">
  34. <text class="cicon-mobile-o" />
  35. <view class="mobile-title ss-m-l-20"> 点击绑定手机号确保账户安全 </view>
  36. </view>
  37. <button class="ss-reset-button bind-btn" @tap="onBind">去绑定</button>
  38. </view>
  39. </view>
  40. </template>
  41. <script setup>
  42. /**
  43. * 用户卡片
  44. *
  45. * @property {Number} leftSpace - 容器左间距
  46. * @property {Number} rightSpace - 容器右间距
  47. *
  48. * @property {String} avatar - 头像
  49. * @property {String} nickname - 昵称
  50. * @property {String} vip - 等级
  51. * @property {String} collectNum - 收藏数
  52. * @property {String} likeNum - 点赞数
  53. *
  54. *
  55. */
  56. import {
  57. computed,
  58. reactive
  59. } from 'vue';
  60. import sheep from '@/sheep';
  61. import {
  62. showShareModal,
  63. showAuthModal
  64. } from '@/sheep/hooks/useModal';
  65. // 用户信息
  66. const userInfo = computed(() => sheep.$store('user').userInfo);
  67. // console.log('用户信息', userInfo)
  68. // 是否登录
  69. const isLogin = computed(() => sheep.$store('user').isLogin);
  70. // 接收参数
  71. const props = defineProps({
  72. background: {
  73. type: String,
  74. default: '',
  75. },
  76. // 头像
  77. avatar: {
  78. type: String,
  79. default: '',
  80. },
  81. nickname: {
  82. type: String,
  83. default: '请登录',
  84. },
  85. vip: {
  86. type: [String, Number],
  87. default: '1',
  88. },
  89. collectNum: {
  90. type: [String, Number],
  91. default: '1',
  92. },
  93. likeNum: {
  94. type: [String, Number],
  95. default: '1',
  96. },
  97. });
  98. function onBind() {
  99. showAuthModal('changeMobile');
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. .ss-user-info-wrap {
  104. box-sizing: border-box;
  105. .avatar-box {
  106. width: 100rpx;
  107. height: 100rpx;
  108. border-radius: 50%;
  109. overflow: hidden;
  110. .avatar-img {
  111. width: 100%;
  112. height: 100%;
  113. }
  114. }
  115. .nick-name {
  116. font-size: 34rpx;
  117. font-weight: 400;
  118. color: #333333;
  119. line-height: normal;
  120. }
  121. .vip-img {
  122. width: 30rpx;
  123. height: 30rpx;
  124. }
  125. .cicon-service-o,.cicon-settings-o {
  126. font-size: 40rpx;
  127. }
  128. .right-box{
  129. display: flex;
  130. }
  131. }
  132. .bind-mobile-box {
  133. width: 100%;
  134. height: 84rpx;
  135. padding: 0 34rpx 0 44rpx;
  136. box-sizing: border-box;
  137. background: #ffffff;
  138. box-shadow: 0px -8rpx 9rpx 0px rgba(#e0e0e0, 0.3);
  139. .cicon-mobile-o {
  140. font-size: 30rpx;
  141. color: #ff690d;
  142. }
  143. .mobile-title {
  144. font-size: 24rpx;
  145. font-weight: 500;
  146. color: #ff690d;
  147. }
  148. .bind-btn {
  149. width: 100rpx;
  150. height: 50rpx;
  151. background: #ff6100;
  152. border-radius: 25rpx;
  153. font-size: 24rpx;
  154. font-weight: 500;
  155. color: #ffffff;
  156. }
  157. }
  158. </style>