everyday.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <view class="page">
  3. <view class="index-navbar">
  4. <view class="" style="position: relative;;">
  5. <!-- <view class="back"></view> -->
  6. <u-navbar title-width='300' title='每日签到' :is-back="true" :border-bottom="false"
  7. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true"></u-navbar>
  8. </view>
  9. </view>
  10. <view class="u-flex u-row-between top">
  11. <view class="">
  12. <view class="u-flex u-row-between">
  13. <view class="">
  14. <view class="u-flex">
  15. <text class="jifen">2</text>
  16. <image style="width: 40rpx;height: 40rpx;" src="" mode=""></image>
  17. </view>
  18. <text class="huoqu">每日签到可得1积分</text>
  19. </view>
  20. <view class="haowu">
  21. 积分兑好物
  22. </view>
  23. </view>
  24. <view class="qiandao">
  25. 今日签到
  26. </view>
  27. <view class="" style="margin-top: 46rpx;">
  28. <u-icon name="info-circle" color="#5881C1" size="22"></u-icon>
  29. <text class="guize">积分规则</text>
  30. </view>
  31. </view>
  32. <image style="width: 208rpx;height: 308rpx;" src="/pageA/static/images/meimei.png" mode=""></image>
  33. </view>
  34. <view class="rili">
  35. <d-rili></d-rili>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. show: true,
  44. mode: 'date'
  45. };
  46. }
  47. }
  48. </script>
  49. <style lang="scss" scoped>
  50. .rili {
  51. // width: 702rpx;
  52. height: 848rpx;
  53. padding:0 24rpx;
  54. }
  55. .guize {
  56. font-size: 22rpx;
  57. font-weight: 400;
  58. line-height: 26rpx;
  59. color: #5881C1;
  60. }
  61. .qiandao {
  62. width: 168rpx;
  63. height: 54rpx;
  64. background: linear-gradient(180deg, #B8E7FB 0%, #97D6F6 100%);
  65. box-shadow: 0rpx 6rpx 12rpx rgba(143, 204, 241, 1);
  66. border-radius: 28rpx;
  67. font-size: 26rpx;
  68. font-family: PingFangSC-Regular;
  69. line-height: 56rpx;
  70. color: #FFF7F7;
  71. text-align: center;
  72. margin-top: 28rpx;
  73. }
  74. .haowu {
  75. width: 158rpx;
  76. height: 48rpx;
  77. background: rgba(255, 255, 255, 1);
  78. border-radius: 24rpx;
  79. font-size: 24rpx;
  80. font-family: PingFang SC;
  81. font-weight: 400;
  82. line-height: 48rpx;
  83. color: #26303A;
  84. text-align: center;
  85. margin-left: 108rpx;
  86. }
  87. .jifen {
  88. font-size: 70rpx;
  89. font-family: PingFang SC;
  90. font-weight: 500;
  91. line-height: 98rpx;
  92. color: #323337;
  93. }
  94. .huoqu {
  95. font-size: 24rpx;
  96. font-family: PingFang SC;
  97. font-weight: 400;
  98. line-height: 34rpx;
  99. color: #7C879A;
  100. }
  101. .top {
  102. padding: 24rpx 44rpx 0 40rpx;
  103. }
  104. .page {
  105. position: absolute;
  106. top: 0;
  107. left: 0;
  108. z-index: -1;
  109. width: 750rpx;
  110. min-height: 120vh;
  111. background: linear-gradient(180deg, #CFF4FE 0%, #D5E5FF 41%, #8FCCF1 100%);
  112. }
  113. .index-navbar {
  114. position: sticky;
  115. top: 0;
  116. left: 0;
  117. width: 750rpx;
  118. z-index: 100;
  119. // overflow: hidden;
  120. // .back {
  121. // position: absolute;
  122. // top: 0;
  123. // left: 0;
  124. // z-index: -1;
  125. // width: 750rpx;
  126. // height: 100vh;
  127. // background: linear-gradient(180deg, #CFF4FE 0%, #D5E5FF 41%, #8FCCF1 100%);
  128. // }
  129. }
  130. </style>