mine.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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">
  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. }
  64. }
  65. </script>
  66. <style lang="scss">
  67. .page {
  68. height: 95vh;
  69. position: relative;
  70. z-index: 1;
  71. background: #F4F5F7;
  72. }
  73. .pad {
  74. padding: 0 28rpx;
  75. height: 95vh;
  76. z-index: 1;
  77. }
  78. .box {
  79. width: 694rpx;
  80. height: 220rpx;
  81. background: #FFFFFF;
  82. border-radius: 16rpx;
  83. padding: 42rpx 28rpx 0 32rpx;
  84. margin-top: 20rpx;
  85. }
  86. .unlogin {
  87. font-size: 44rpx;
  88. font-family: PingFangSC, PingFang SC;
  89. font-weight: 500;
  90. color: #222222;
  91. margin-left: 20rpx;
  92. }
  93. .order {
  94. width: 694rpx;
  95. height: 96rpx;
  96. background: #FFFFFF;
  97. border-radius: 16rpx;
  98. padding: 30rpx 28rpx 30rpx 34rpx;
  99. margin-top: 66rpx;
  100. }
  101. .index-navbar {
  102. position: fixed;
  103. top: 0;
  104. left: 0;
  105. width: 100vw;
  106. z-index: -1;
  107. // overflow: hidden;
  108. .back {
  109. position: absolute;
  110. top: 0;
  111. left: 0;
  112. z-index: -1;
  113. width: 100vw;
  114. height: 394rpx;
  115. background: linear-gradient(180deg, #D7F5EB 0%, #FFFFFF 100%);
  116. }
  117. }
  118. </style>