mine.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <view class="page">
  3. <!-- 顶部导航 -->
  4. <u-navbar title-width='300' title='' :is-back="false" :border-bottom="false"
  5. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true"></u-navbar>
  6. <view class="index-navbar">
  7. <view class="" style="position: relative;;">
  8. <view class="back"></view>
  9. </view>
  10. </view>
  11. <view class="pad">
  12. <view v-if="login" class="unlogin">
  13. {{mine.username}}
  14. </view>
  15. <view v-else class="unlogin" @click="tologin">
  16. 登录/注册
  17. </view>
  18. <view class="order u-flex u-row-between" @click="toorder">
  19. <view class="">
  20. <u-icon name="order"></u-icon>
  21. <text style="margin-left: 26rpx;">我的订单</text>
  22. </view>
  23. <u-icon name="arrow-right" color="rgba(0,0,0,0.3)"></u-icon>
  24. </view>
  25. <view class="box">
  26. <view class=" u-flex u-row-between" @click="tocard">
  27. <view class="">
  28. <u-icon name="coupon"></u-icon>
  29. <text style="margin-left: 26rpx;">我的体验卡</text>
  30. </view>
  31. <u-icon name="arrow-right" color="rgba(0,0,0,0.3)"></u-icon>
  32. </view>
  33. <view class=" u-flex u-row-between " style="margin-top: 64rpx;" @click="tosetting">
  34. <view class="">
  35. <u-icon name="setting"></u-icon>
  36. <text style="margin-left: 26rpx;">设置</text>
  37. </view>
  38. <u-icon name="arrow-right" color="rgba(0,0,0,0.3)"></u-icon>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. export default {
  46. data() {
  47. return {
  48. login: '',
  49. mine: {
  50. username:''
  51. }
  52. };
  53. },
  54. methods: {
  55. getUserinfo() {
  56. this.$u.post('api/user/getUserinfo').then(res => {
  57. this.mine = res
  58. })
  59. },
  60. toorder() {
  61. uni.navigateTo({
  62. url: '/pages/mine/myorder'
  63. })
  64. },
  65. tocard() {
  66. uni.navigateTo({
  67. url: '/pages/mine/card'
  68. })
  69. },
  70. tosetting() {
  71. uni.navigateTo({
  72. url: '/pages/mine/setting'
  73. })
  74. },
  75. tologin() {
  76. uni.reLaunch({
  77. url: "/pages/login/login"
  78. })
  79. }
  80. },
  81. onLoad() {
  82. if (uni.getStorageSync('token')) {
  83. this.login = true
  84. this.getUserinfo()
  85. }
  86. }
  87. }
  88. </script>
  89. <style lang="scss">
  90. .page {
  91. height: 95vh;
  92. position: relative;
  93. z-index: 1;
  94. background: #F4F5F7;
  95. }
  96. .pad {
  97. padding: 0 28rpx;
  98. height: 95vh;
  99. z-index: 1;
  100. }
  101. .box {
  102. width: 694rpx;
  103. height: 220rpx;
  104. background: #FFFFFF;
  105. border-radius: 16rpx;
  106. padding: 42rpx 28rpx 0 32rpx;
  107. margin-top: 20rpx;
  108. }
  109. .unlogin {
  110. font-size: 44rpx;
  111. font-family: PingFangSC, PingFang SC;
  112. font-weight: 500;
  113. color: #222222;
  114. margin-left: 20rpx;
  115. }
  116. .order {
  117. width: 694rpx;
  118. height: 96rpx;
  119. background: #FFFFFF;
  120. border-radius: 16rpx;
  121. padding: 30rpx 28rpx 30rpx 34rpx;
  122. margin-top: 66rpx;
  123. }
  124. .index-navbar {
  125. position: fixed;
  126. top: 0;
  127. left: 0;
  128. width: 100vw;
  129. z-index: -1;
  130. // overflow: hidden;
  131. .back {
  132. position: absolute;
  133. top: 0;
  134. left: 0;
  135. z-index: -1;
  136. width: 100vw;
  137. height: 394rpx;
  138. background: linear-gradient(180deg, #D7F5EB 0%, #FFFFFF 100%);
  139. }
  140. }
  141. </style>