mine.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <view class="page">
  3. <u-navbar :border-bottom='false' :is-back='false'>
  4. <text style="margin-left: 24rpx;">我的</text>
  5. </u-navbar>
  6. <view class="top u-flex u-row-between">
  7. <view class="left">
  8. <image style="width: 116rpx;height: 116rpx;border-radius: 50%;" src="" mode=""></image>
  9. <view class="" style="margin-left: 22rpx;padding: 20rpx 0 0 0 ;">
  10. <text class="login">登录/注册</text>
  11. <view class="look">登录后可使用全部功能</view>
  12. </view>
  13. </view>
  14. <view class="qiandao">
  15. 已签到
  16. </view>
  17. </view>
  18. <view class="back">
  19. <view class="top1">
  20. <text style="font-size: 36rpx;">L</text>
  21. <text>v.0</text>
  22. </view>
  23. <view class="bottom">当前成长值:0</view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. }
  32. },
  33. onLoad() {
  34. },
  35. methods: {
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. .page {
  41. min-height: 100vh;
  42. padding: 0 24rpx;
  43. }
  44. .back {
  45. // background-color: #A1A4B5;
  46. width: 690rpx;
  47. height: 128rpx;
  48. background: linear-gradient(95deg, #898EA3 0%, #A1A4B5 40%, #BDC0D1 100%);
  49. opacity: 1;
  50. border-radius: 22rpx;
  51. padding: 22rpx 0 24rpx 58rpx;
  52. .top1 {
  53. font-size: 28rpx;
  54. font-family: DOUYU;
  55. font-weight: normal;
  56. line-height: 38rpx;
  57. color: #FFF7F7;
  58. // letter-spacing: 100px;
  59. }
  60. .bottom {
  61. font-size: 22rpx;
  62. font-family: PingFang SC;
  63. font-weight: 400;
  64. line-height: 32rpx;
  65. color: #FFF7F7;
  66. margin-top: 14rpx;
  67. }
  68. }
  69. .top {
  70. margin: 44rpx 0 38rpx 0;
  71. overflow: hidden;
  72. .left {
  73. display: flex;
  74. overflow: hidden;
  75. .login {
  76. font-size: 36rpx;
  77. font-family: PingFang SC;
  78. font-weight: 500;
  79. line-height: 50rpx;
  80. color: #323337;
  81. margin-bottom: 10rpx;
  82. }
  83. .look {
  84. font-size: 24rpx;
  85. font-family: PingFangSC-Regular;
  86. line-height: 34rpx;
  87. color: #959595;
  88. }
  89. }
  90. .qiandao {
  91. width: 168rpx;
  92. height: 54rpx;
  93. background: #B1E3FA;
  94. box-shadow: 0rpx 6rpx 12rpx #B1E3FA;
  95. opacity: 1;
  96. border-radius: 28rpx;
  97. line-height: 54rpx;
  98. text-align: center;
  99. font-size: 26rpx;
  100. font-family: PingFangSC-Regular;
  101. color: #FFF7F7;
  102. }
  103. }
  104. </style>