index.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <div class="mine-conatainer">
  3. <div class="header">
  4. <div class="avatar">
  5. <img
  6. :src="userInfo.user_head_img_url"
  7. alt="">
  8. </div>
  9. </div>
  10. <ul>
  11. <li @click="$router.push({name: 'Order'})">
  12. <p class="left">
  13. <i class="label icon-order"></i>
  14. <span class="label">下单记录</span>
  15. </p>
  16. <p class="right">
  17. <i class="arrow"></i>
  18. </p>
  19. </li>
  20. <li @click="$router.push({name: 'Wallet'})">
  21. <p class="left">
  22. <i class="label icon-wallet"></i>
  23. <span class="label">钱包</span>
  24. </p>
  25. <p class="right">
  26. <span class="value">{{ userInfo.user_balance | fen2Yuan }}</span>
  27. <i class="arrow"></i>
  28. </p>
  29. </li>
  30. <li @click="$router.push({name: 'Fans'})">
  31. <p class="left">
  32. <i class="label icon-wallet"></i>
  33. <span class="label">粉丝</span>
  34. </p>
  35. <p class="right">
  36. <span class="value">{{ userInfo.user_fans_num }}</span>
  37. <i class="arrow"></i>
  38. </p>
  39. </li>
  40. </ul>
  41. <router-link
  42. class="jump-recommend"
  43. :to="{name: 'Recommend'}"></router-link>
  44. </div>
  45. </template>
  46. <script>
  47. import { mapGetters } from 'vuex'
  48. export default {
  49. name: 'index',
  50. computed: {
  51. ...mapGetters({
  52. userInfo: 'common/userinfo'
  53. })
  54. }
  55. }
  56. </script>
  57. <style lang="scss" scoped>
  58. .mine-conatainer {
  59. position: absolute;
  60. left: 0;
  61. top: 0;
  62. right: 0;
  63. bottom: 0;
  64. width: 100%;
  65. }
  66. .header {
  67. width: 100%;
  68. padding-top: 59px;
  69. background: url("./image/bg_header@2x.png") center top/100% 94px no-repeat;
  70. }
  71. .avatar {
  72. width: 73px;
  73. height: 73px;
  74. margin: 0 auto;
  75. border-radius: 50%;
  76. overflow: hidden;
  77. img {
  78. display: block;
  79. width: 100%;
  80. }
  81. }
  82. ul {
  83. width: 335px;
  84. margin: 0 auto;
  85. li {
  86. display: flex;
  87. align-items: center;
  88. width: 100%;
  89. padding: 16px 0;
  90. background: #FFFFFF;
  91. box-shadow: 0 2px 4px 0 rgba(31, 49, 74, 0.12);
  92. border-radius: 10px;
  93. margin-top: 17px;
  94. &:nth-of-type(1) {
  95. margin-top: 4px;
  96. }
  97. }
  98. .left,
  99. .right {
  100. display: flex;
  101. align-items: center;
  102. width: 50%;
  103. }
  104. .left {
  105. padding-left: 19px;
  106. }
  107. .right {
  108. justify-content: flex-end;
  109. padding-right: 14px;
  110. }
  111. i.label {
  112. width: 20px;
  113. height: 20px;
  114. margin-right: 8px;
  115. background-position: center center;
  116. background-size: 20px 20px;
  117. background-repeat: no-repeat;
  118. &.icon-order {
  119. background-image: url("./image/ic_order@2x.png");
  120. }
  121. &.icon-wallet {
  122. background-image: url("./image/ic_wallet@2x.png");
  123. }
  124. &.icon-fans {
  125. background-image: url("./image/ic_fans@2x.png");
  126. }
  127. }
  128. span.label {
  129. padding-top: 2px;
  130. font-size: 14px;
  131. color: #333333;
  132. line-height: 20px;
  133. }
  134. .value {
  135. font-size: 12px;
  136. font-family: PingFangSC-Medium, PingFang SC;
  137. font-weight: 500;
  138. color: #FA4A4A;
  139. line-height: 17px;
  140. }
  141. .arrow {
  142. width: 24px;
  143. height: 24px;
  144. background: url("./image/ic_arrow@2x.png") center center/24px 24px no-repeat;
  145. }
  146. }
  147. .jump-recommend {
  148. display: block;
  149. width: 335px;
  150. height: 61px;
  151. margin: 25px auto 0;
  152. background: url("./image/bg_recommend@2x.png") center center/335px 61px no-repeat;
  153. }
  154. </style>