index.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <template>
  2. <view class="page">
  3. <view class="index-navbar">
  4. <view class="" style="position: relative;;">
  5. <u-navbar title-width='300' title='' :is-back="false" :border-bottom="false"
  6. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true">
  7. <view class="u-flex u-row-between" style="padding: 0 28rpx ;width: 100vw;">
  8. <view class="">
  9. logo
  10. </view>
  11. <view class="index-search u-flex" style="margin-left: 54rpx;">
  12. <u-icon name="search" color="#979797" size="30"></u-icon>
  13. <input style="margin-left: 12rpx;" type="text" class="text1" placeholder="请输入书名、作者搜索"
  14. :disabled="true">
  15. </view>
  16. <view class="button">
  17. <text>投稿</text>
  18. </view>
  19. </view>
  20. </u-navbar>
  21. <view class="back"></view>
  22. </view>
  23. <view class="u-flex u-row-between pad" style="margin-top:36rpx ;">
  24. <view class="" v-for="(item,index) in list" :key="index" @click="onchange(index)">
  25. <text :class="curret==index?'one':'two' ">{{item}}</text>
  26. <view v-if="curret==index" class="bottom">
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="" style="height: 400rpx;"></view>
  32. <view class="back pad">
  33. <view class="wrap">
  34. <u-swiper :list="list"></u-swiper>
  35. </view>
  36. <view class="jiang">
  37. <view class="u-flex u-row-between">
  38. <text class="title1">获奖教材</text>
  39. <view class="look">查看更多</view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. list: [
  50. '首页', '纸质书', '电子书', '名师教学视频'
  51. ],
  52. curret: 0
  53. }
  54. },
  55. onLoad() {
  56. },
  57. methods: {
  58. onchange(index) {
  59. this.curret = index
  60. }
  61. }
  62. }
  63. </script>
  64. <style lang="scss" scoped>
  65. .look {
  66. width: 130rpx;
  67. height: 40rpx;
  68. background: rgba(6, 169, 113, 0.1);
  69. border-radius: 24rpx;
  70. font-size: 20rpx;
  71. font-weight: 400;
  72. color: #06A971;
  73. line-height: 40rpx;
  74. text-align: center;
  75. padding: 6rpx 12rpx;
  76. box-sizing: border-box;
  77. }
  78. .title1 {
  79. font-size: 32rpx;
  80. font-family: STSongti-SC, STSongti-SC;
  81. font-weight: bold;
  82. color: #000000;
  83. }
  84. .jiang {
  85. width: 702rpx;
  86. height: 978rpx;
  87. background: #FFFFFF;
  88. border-radius: 16rpx;
  89. padding: 28rpx 20rpx 0;
  90. }
  91. .back {
  92. position: relative;
  93. height: 80vh;
  94. z-index: 4;
  95. }
  96. .wrap {
  97. margin-top: 40rpx;
  98. height: 280rpx;
  99. border-radius: 20rpx;
  100. }
  101. .pad {
  102. padding: 0 28rpx;
  103. }
  104. .one {
  105. font-size: 32rpx;
  106. font-family: PingFangSC, PingFang SC;
  107. font-weight: 500;
  108. color: #222222;
  109. }
  110. .two {
  111. font-size: 30rpx;
  112. font-family: PingFangSC, PingFang SC;
  113. font-weight: 400;
  114. color: #555555;
  115. }
  116. .bottom {
  117. width: 64rpx;
  118. height: 12rpx;
  119. background: linear-gradient(270deg, rgba(6, 169, 113, 0) 0%, #0ED4AA 100%);
  120. margin-top: -15rpx;
  121. }
  122. .index-search {
  123. width: 414rpx;
  124. height: 60rpx;
  125. background: #FFFFFF;
  126. border-radius: 38rpx;
  127. padding-left: 34rpx;
  128. }
  129. .page {
  130. // padding: 0 28rpx;
  131. min-height: 100vh;
  132. background: rgba(243, 243, 243, 1);
  133. }
  134. .button {
  135. width: 128rpx;
  136. height: 60rpx;
  137. background: #06A971;
  138. border-radius: 30rpx;
  139. // margin-left: 24rpx;
  140. line-height: 60rpx;
  141. text-align: center;
  142. font-size: 24rpx;
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: 400;
  145. color: #FFFFFF;
  146. }
  147. .index-navbar {
  148. position: fixed;
  149. top: 0;
  150. left: 0;
  151. width: 100vw;
  152. z-index: 2;
  153. // overflow: hidden;
  154. .back {
  155. position: absolute;
  156. top: 0;
  157. left: 0;
  158. z-index: -1;
  159. width: 100vw;
  160. height: 432rpx;
  161. background: url(/static/images/bj.png);
  162. }
  163. }
  164. </style>