mine.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 class="unlogin" @click="tologin">
  13. 登录/注册
  14. </view>
  15. <view class="order u-flex u-row-between" @click="toorder">
  16. <view class="">
  17. <u-icon name="order"></u-icon>
  18. <text style="margin-left: 26rpx;">我的订单</text>
  19. </view>
  20. <u-icon name="arrow-right" color="rgba(0,0,0,0.3)"></u-icon>
  21. </view>
  22. <view class="box">
  23. <view class=" u-flex u-row-between" @click="tocard">
  24. <view class="">
  25. <u-icon name="coupon"></u-icon>
  26. <text style="margin-left: 26rpx;">我的体验卡</text>
  27. </view>
  28. <u-icon name="arrow-right" color="rgba(0,0,0,0.3)"></u-icon>
  29. </view>
  30. <view class=" u-flex u-row-between " style="margin-top: 64rpx;" @click="tosetting">
  31. <view class="">
  32. <u-icon name="setting"></u-icon>
  33. <text style="margin-left: 26rpx;">设置</text>
  34. </view>
  35. <u-icon name="arrow-right" color="rgba(0,0,0,0.3)"></u-icon>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. };
  46. },
  47. methods: {
  48. toorder() {
  49. uni.navigateTo({
  50. url: '/pages/mine/myorder'
  51. })
  52. },
  53. tocard(){
  54. uni.navigateTo({
  55. url:'/pages/mine/card'
  56. })
  57. },
  58. tosetting(){
  59. uni.navigateTo({
  60. url:'/pages/mine/setting'
  61. })
  62. },
  63. tologin(){
  64. uni.reLaunch({
  65. url:"/pages/login/login"
  66. })
  67. }
  68. }
  69. }
  70. </script>
  71. <style lang="scss">
  72. .page {
  73. height: 95vh;
  74. position: relative;
  75. z-index: 1;
  76. background: #F4F5F7;
  77. }
  78. .pad {
  79. padding: 0 28rpx;
  80. height: 95vh;
  81. z-index: 1;
  82. }
  83. .box {
  84. width: 694rpx;
  85. height: 220rpx;
  86. background: #FFFFFF;
  87. border-radius: 16rpx;
  88. padding: 42rpx 28rpx 0 32rpx;
  89. margin-top: 20rpx;
  90. }
  91. .unlogin {
  92. font-size: 44rpx;
  93. font-family: PingFangSC, PingFang SC;
  94. font-weight: 500;
  95. color: #222222;
  96. margin-left: 20rpx;
  97. }
  98. .order {
  99. width: 694rpx;
  100. height: 96rpx;
  101. background: #FFFFFF;
  102. border-radius: 16rpx;
  103. padding: 30rpx 28rpx 30rpx 34rpx;
  104. margin-top: 66rpx;
  105. }
  106. .index-navbar {
  107. position: fixed;
  108. top: 0;
  109. left: 0;
  110. width: 100vw;
  111. z-index: -1;
  112. // overflow: hidden;
  113. .back {
  114. position: absolute;
  115. top: 0;
  116. left: 0;
  117. z-index: -1;
  118. width: 100vw;
  119. height: 394rpx;
  120. background: linear-gradient(180deg, #D7F5EB 0%, #FFFFFF 100%);
  121. }
  122. }
  123. </style>