index.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <div class="min-container">
  3. <div class="user-info">
  4. <div class="avatar">
  5. <img :src="userDetail.user_head_url" alt="">
  6. </div>
  7. <div class="name">
  8. <p>{{ userDetail.user_name }}</p>
  9. <p>ID:{{userDetail.user_account }}</p>
  10. </div>
  11. </div>
  12. <div class="menu-wrap">
  13. <router-link :to="{path: '/order'}" tag="p">
  14. <img alt="" src="./image/icon_order@2x.png">
  15. <span>订单记录</span>
  16. </router-link>
  17. <router-link :to="{name: 'PlaceReserve'}" tag="p">
  18. <img alt="" src="./image/icon_place@2x.png">
  19. <span>订座记录</span>
  20. </router-link>
  21. </div>
  22. <van-button
  23. :disabled="booLock"
  24. class="btn-logout"
  25. type="default"
  26. @click="fetchUserLogout">退出登录
  27. </van-button>
  28. </div>
  29. </template>
  30. <script>
  31. import { Toast, Button } from 'vant'
  32. import { apiUserDetail, apiUserLogout } from './api/api'
  33. import { clearStore, clearLoginInfo } from '../../utils'
  34. export default {
  35. name: 'index',
  36. components: {
  37. 'van-button': Button
  38. },
  39. data () {
  40. return {
  41. userDetail: {},
  42. booLock: false
  43. }
  44. },
  45. activated () {
  46. if (!this.$route.meta.isUseCache) {
  47. this.userDetail = {}
  48. this.fetchUserDetail()
  49. }
  50. this.$route.meta.isUseCache = false
  51. },
  52. methods: {
  53. async fetchUserDetail () {
  54. try {
  55. const { status, data, msg } = await apiUserDetail()
  56. if (status) {
  57. this.userDetail = data
  58. } else {
  59. Toast(msg)
  60. }
  61. } catch (err) {}
  62. },
  63. async fetchUserLogout () {
  64. try {
  65. this.booLock = true
  66. const { status, msg } = await apiUserLogout()
  67. if (status) {
  68. clearLoginInfo()
  69. clearStore()
  70. this.$router.replace({ name: 'Login' })
  71. } else {
  72. Toast(msg)
  73. }
  74. this.booLock = false
  75. } catch (err) {
  76. this.booLock = false
  77. }
  78. }
  79. },
  80. beforeRouteLeave (to, form, next) {
  81. if (['OrderList', 'PlaceReserve'].findIndex(item => item === to.name) > -1) {
  82. form.meta.isUseCache = true
  83. }
  84. next()
  85. }
  86. }
  87. </script>
  88. <style lang="scss" scoped>
  89. .min-container {
  90. position: relative;
  91. left: 0;
  92. top: 0;
  93. min-height: 100vh;
  94. background: #fff;
  95. }
  96. .user-info {
  97. display: flex;
  98. align-items: center;
  99. padding: 46px 20px 46px;
  100. background: url("./image/header.png") center top/100% auto no-repeat;
  101. .avatar {
  102. display: block;
  103. width: 51px;
  104. height: 51px;
  105. border-radius: 50%;
  106. border: 1px solid #fff;
  107. overflow: hidden;
  108. img {
  109. display: block;
  110. width: 100%;
  111. }
  112. }
  113. .name {
  114. margin-left: 14px;
  115. p {
  116. &:nth-of-type(1) {
  117. font-size: 21px;
  118. font-family: PingFangSC-Medium, PingFang SC;
  119. font-weight: 500;
  120. color: #FFFFFF;
  121. line-height: 29px;
  122. }
  123. &:nth-of-type(2) {
  124. font-size: 14px;
  125. color: #FFFFFF;
  126. line-height: 20px;
  127. }
  128. }
  129. }
  130. }
  131. .menu-wrap {
  132. display: flex;
  133. justify-content: center;
  134. align-items: center;
  135. margin-top: 12px;
  136. p {
  137. display: flex;
  138. align-items: center;
  139. width: 172px;
  140. height: 68px;
  141. border-radius: 4px;
  142. border: 1px solid #F2F2F2;
  143. &:nth-of-type(2) {
  144. margin-left: 11px;
  145. }
  146. img {
  147. width: 44px;
  148. height: 44px;
  149. margin: 0 10px;
  150. }
  151. span {
  152. font-size: 16px;
  153. font-family: PingFangSC-Medium, PingFang SC;
  154. font-weight: 500;
  155. color: #1F1E1E;
  156. line-height: 22px;
  157. }
  158. }
  159. }
  160. .btn-logout {
  161. @include horiz-center;
  162. bottom: 100px;
  163. }
  164. </style>