index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. <template>
  2. <view class="page">
  3. <image class="back1" src="../../static/images/bj.png" mode=""></image>
  4. <view class="index-navbar">
  5. <view class="" style="position: relative;">
  6. <image class="back1" style="height: 200rpx;" src="../../static/images/bj.png" mode=""></image>
  7. <u-navbar title-width='300' title='' :is-back="false" :border-bottom="false"
  8. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true">
  9. <view class="u-flex u-row-between" style="padding: 0 28rpx ;width: 100vw;">
  10. <view class="">
  11. logo
  12. </view>
  13. <view class="index-search u-flex" style="margin-left: 54rpx;" @click="toindexsearch">
  14. <u-icon name="search" color="#979797" size="30"></u-icon>
  15. <input style="margin-left: 12rpx;" type="text" class="text1" placeholder="请输入书名、作者搜索"
  16. :disabled="true">
  17. </view>
  18. <view class="button u-flex u-row-center">
  19. <image src="../../static/images/release.png"
  20. style="width: 24rpx; height: 24rpx;margin-right: 8rpx;" mode="">
  21. </image>
  22. <text @click='contribute'>投稿</text>
  23. </view>
  24. </view>
  25. </u-navbar>
  26. <!-- <view class="back"></view> -->
  27. </view>
  28. <view class="u-flex u-row-between pad" style="margin-top:36rpx ;">
  29. <view class="" v-for="(item,index) in list" :key="index" @click="onchange(index)">
  30. <text :class="curret==index?'one':'two' ">{{item}}</text>
  31. <view v-if="curret==index" class="bottom">
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="" style="height: 200rpx;"></view>
  37. <view v-if="curret==0" class="back pad">
  38. <view class="wrap" v-if="curret==0">
  39. <u-swiper :list="list"></u-swiper>
  40. </view>
  41. <view class="jiang">
  42. <view class="u-flex u-row-between">
  43. <text class="title1">获奖教材</text>
  44. <view class="look">查看更多</view>
  45. </view>
  46. <view class="cai u-flex u-row-between">
  47. <view class="item " v-for="(item,index) in 6" :key="index" @click="toinfo()">
  48. <image src="/static/logo.png" class="bookimg" mode=""></image>
  49. <view class="title2 u-line-1">
  50. ERP财务管理系统管理教程
  51. </view>
  52. <view class="u-line-1 author">
  53. 丁爱萍,林秀丽
  54. </view>
  55. <view class="bottom1">
  56. <text class="ding">定价</text>
  57. <text class="money">¥38.5</text>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="newbox">
  63. <view class="u-flex u-row-between">
  64. <text class="title1">新书推荐</text>
  65. <view class="look">查看更多</view>
  66. </view>
  67. <view class="u-flex video u-row-between">
  68. <view class="item2 " v-for="(item,index) in 6" :key="index">
  69. <image src="/static/logo.png" style="width: 322rpx;height: 198rpx;" mode=""></image>
  70. <view class="title3 u-line-1">武忠祥领衔|25考研数学领域</view>
  71. <view class="author u-line-1">武忠祥</view>
  72. <view class="money">¥1288.00</view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="" style="height: 30rpx;"></view>
  77. </view>
  78. <view v-if="curret==1" style="position: relative;z-index: 1;margin-top: 24rpx;" class="">
  79. <ty-paper></ty-paper>
  80. </view>
  81. <view v-if="curret==3" style="position: relative;z-index: 1;margin-top: 24rpx;" class="">
  82. <ty-video></ty-video>
  83. </view>
  84. </view>
  85. </template>
  86. <script>
  87. export default {
  88. data() {
  89. return {
  90. list: [
  91. '首页', '纸质书', '电子书', '名师教学视频'
  92. ],
  93. curret: 0,
  94. page: 1,
  95. limit: 10,
  96. page1: 1,
  97. limit1: 10,
  98. awardlist: []
  99. }
  100. },
  101. onLoad() {
  102. this.getnewlist()
  103. this.awardslist()
  104. },
  105. methods: {
  106. // 新书推荐
  107. getnewlist() {
  108. this.$u.post('api/books/getBooksList', {
  109. is_new_recommend: 0,
  110. page: this.page,
  111. limit: this.limit
  112. }).then(res => {
  113. console.log('new', res);
  114. })
  115. },
  116. //获奖推荐
  117. awardslist() {
  118. this.$u.post('api/books/getBooksList', {
  119. is_awards: 0,
  120. page: this.page1,
  121. limit: this.limit1
  122. }).then(res => {
  123. console.log('award', res);
  124. this.awardlist = res.data
  125. })
  126. },
  127. onchange(index) {
  128. this.curret = index
  129. },
  130. toindexsearch() {
  131. uni.navigateTo({
  132. url: "/pages/index/index-search"
  133. })
  134. },
  135. toinfo() {
  136. uni.navigateTo({
  137. url: '/pages/index/bookinfo'
  138. })
  139. },
  140. contribute() {
  141. uni.navigateTo({
  142. url: '/pages/index/contribute'
  143. })
  144. }
  145. },
  146. }
  147. </script>
  148. <style lang="scss" scoped>
  149. .item2 {
  150. margin-top: 24rpx;
  151. }
  152. .title3 {
  153. width: 314rpx;
  154. height: 40rpx;
  155. font-size: 28rpx;
  156. font-family: PingFangSC, PingFang SC;
  157. font-weight: 500;
  158. color: #333333;
  159. margin-top: 16rpx;
  160. }
  161. .video {
  162. flex-wrap: wrap;
  163. }
  164. .newbox {
  165. // width: 702rpx;
  166. min-height: 870rpx;
  167. background: #FFFFFF;
  168. border-radius: 16rpx;
  169. margin-top: 20rpx;
  170. padding: 28rpx 20rpx;
  171. }
  172. .bottom1 {
  173. margin-top: 16rpx;
  174. }
  175. .item {
  176. margin-top: 20rpx;
  177. }
  178. .money {
  179. font-size: 28rpx;
  180. font-family: SFPro, SFPro;
  181. font-weight: 400;
  182. color: #CC3300;
  183. margin-left: 8rpx;
  184. }
  185. .ding {
  186. font-size: 24rpx;
  187. font-family: PingFangSC, PingFang SC;
  188. font-weight: 400;
  189. color: #222222;
  190. }
  191. .author {
  192. font-size: 24rpx;
  193. font-family: PingFangSC, PingFang SC;
  194. font-weight: 400;
  195. color: #444444;
  196. margin-top: 8rpx;
  197. }
  198. .title2 {
  199. width: 198rpx;
  200. height: 36rpx;
  201. font-size: 26rpx;
  202. font-family: SFPro, SFPro;
  203. font-weight: 500;
  204. color: #333333;
  205. line-height: 30rpx;
  206. margin-top: 16rpx;
  207. }
  208. .bookimg {
  209. width: 202rpx;
  210. height: 266rpx;
  211. background: #D8D8D8;
  212. border-radius: 8rpx;
  213. }
  214. .cai {
  215. padding-top: 10rpx;
  216. flex-wrap: wrap;
  217. }
  218. .look {
  219. width: 130rpx;
  220. height: 40rpx;
  221. background: rgba(6, 169, 113, 0.1);
  222. border-radius: 24rpx;
  223. font-size: 20rpx;
  224. font-weight: 400;
  225. color: #06A971;
  226. line-height: 40rpx;
  227. text-align: center;
  228. // padding: 6rpx 12rpx;
  229. box-sizing: border-box;
  230. }
  231. .title1 {
  232. font-size: 32rpx;
  233. font-family: STSongti-SC, STSongti-SC;
  234. font-weight: bold;
  235. color: #000000;
  236. }
  237. .jiang {
  238. // width: 702rpx;
  239. height: 978rpx;
  240. background: #FFFFFF;
  241. border-radius: 16rpx;
  242. padding: 28rpx 20rpx 0;
  243. }
  244. .back {
  245. position: relative;
  246. min-height: 80vh;
  247. z-index: 99;
  248. }
  249. .wrap {
  250. margin-top: 40rpx;
  251. height: 280rpx;
  252. border-radius: 20rpx;
  253. }
  254. .pad {
  255. padding: 0 28rpx;
  256. }
  257. .one {
  258. font-size: 32rpx;
  259. font-family: PingFangSC, PingFang SC;
  260. font-weight: 500;
  261. color: #222222;
  262. }
  263. .two {
  264. font-size: 30rpx;
  265. font-family: PingFangSC, PingFang SC;
  266. font-weight: 400;
  267. color: #555555;
  268. }
  269. .bottom {
  270. width: 64rpx;
  271. height: 12rpx;
  272. background: linear-gradient(270deg, rgba(6, 169, 113, 0) 0%, #0ED4AA 100%);
  273. margin-top: -15rpx;
  274. }
  275. .index-search {
  276. width: 414rpx;
  277. height: 60rpx;
  278. background: #FFFFFF;
  279. border-radius: 38rpx;
  280. padding-left: 34rpx;
  281. }
  282. .page {
  283. // padding: 0 28rpx;
  284. min-height: 100vh;
  285. background: rgba(243, 243, 243, 1);
  286. position: relative;
  287. z-index: 1;
  288. }
  289. .button {
  290. width: 128rpx;
  291. height: 60rpx;
  292. background: #06A971;
  293. border-radius: 30rpx;
  294. // margin-left: 24rpx;
  295. line-height: 60rpx;
  296. text-align: center;
  297. font-size: 24rpx;
  298. font-family: PingFangSC, PingFang SC;
  299. font-weight: 400;
  300. color: #FFFFFF;
  301. }
  302. .back1 {
  303. position: fixed;
  304. top: 0;
  305. left: 0;
  306. z-index: -1;
  307. width: 100vw;
  308. height: 432rpx;
  309. }
  310. .index-navbar {
  311. position: fixed;
  312. top: 0;
  313. left: 0;
  314. width: 100vw;
  315. z-index: 999;
  316. // overflow: hidden;
  317. }
  318. </style>