index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  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" @click="tomore(3)">查看更多</view>
  45. </view>
  46. <view class="cai u-flex u-row-between">
  47. <view class="item " v-for="(item,index) in awardlist.slice(0,6)" :key="index"
  48. @click="toinfo(item.id)">
  49. <image :src="item.image" class="bookimg" mode=""></image>
  50. <view class="title2 u-line-1">
  51. {{item.title}}
  52. </view>
  53. <view class="u-line-1 author">
  54. {{item.author}}
  55. </view>
  56. <view class="bottom1">
  57. <text class="ding">定价</text>
  58. <text class="money">{{item.entity_price}}</text>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. <view class="newbox">
  64. <view class="u-flex u-row-between">
  65. <text class="title1">新书推荐</text>
  66. <view class="look" @click="tomore(4)">查看更多</view>
  67. </view>
  68. <!-- <view class="u-flex video u-row-between">
  69. <view class="item2 " v-for="(item,index) in newlist.slice(0,6)" :key="index" @click="">
  70. <image :src="item.image" style="width: 322rpx;height: 198rpx;" mode=""></image>
  71. <view class="title3 u-line-1">{{item.title}}</view>
  72. <view class="author2 u-line-1">{{item.author}}</view>
  73. <view class="money">¥{{item.entity_price}}</view>
  74. </view>
  75. </view> -->
  76. <view class="cai u-flex u-row-between">
  77. <view class="item " v-for="(item,index) in newlist.slice(0,6)" :key="index"
  78. @click="toinfo(item.id)">
  79. <image :src="item.image" class="bookimg" mode=""></image>
  80. <view class="title2 u-line-1">
  81. {{item.title}}
  82. </view>
  83. <view class="u-line-1 author">
  84. {{item.author}}
  85. </view>
  86. <view class="bottom1">
  87. <text class="ding">定价</text>
  88. <text class="money">{{item.entity_price}}</text>
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. <view class="" style="height: 30rpx;"></view>
  94. </view>
  95. <view v-show="curret==1" style="position: relative;z-index: 1;margin-top: 24rpx;" class="">
  96. <ty-paper ref='paper'></ty-paper>
  97. </view>
  98. <view v-if="curret==3" style="position: relative;z-index: 1;margin-top: 24rpx;" class="">
  99. <ty-video></ty-video>
  100. </view>
  101. </view>
  102. </template>
  103. <script>
  104. export default {
  105. data() {
  106. return {
  107. list: [
  108. '首页', '纸质书', '电子书', '名师教学视频'
  109. ],
  110. curret: 0,
  111. page: 1,
  112. limit: 10,
  113. page1: 1,
  114. limit1: 10,
  115. awardlist: [],
  116. newlist: []
  117. }
  118. },
  119. onLoad() {
  120. this.getnewlist()
  121. this.getawardslist()
  122. },
  123. methods: {
  124. tomore(index) {
  125. this.curret = 1
  126. this.$refs.paper.current = index
  127. uni.pageScrollTo({
  128. scrollTop: 0,
  129. duration: 0
  130. })
  131. },
  132. // 新书推荐
  133. getnewlist() {
  134. this.$u.post('api/books/getBooksList', {
  135. is_new_recommend: 0,
  136. page: this.page,
  137. limit: this.limit
  138. }).then(res => {
  139. this.newlist = res.data.data
  140. })
  141. },
  142. //获奖推荐
  143. getawardslist() {
  144. this.$u.post('api/books/getBooksList', {
  145. is_awards: 0,
  146. page: this.page1,
  147. limit: this.limit1
  148. }).then(res => {
  149. console.log('award', res);
  150. this.awardlist = res.data.data
  151. })
  152. },
  153. onchange(index) {
  154. this.curret = index
  155. },
  156. toindexsearch() {
  157. uni.navigateTo({
  158. url: "/pages/index/index-search"
  159. })
  160. },
  161. toinfo(id) {
  162. uni.navigateTo({
  163. url: '/pages/index/bookinfo?id=' + id
  164. })
  165. },
  166. contribute() {
  167. uni.navigateTo({
  168. url: '/pages/index/contribute'
  169. })
  170. }
  171. },
  172. }
  173. </script>
  174. <style lang="scss" scoped>
  175. .item2 {
  176. margin-top: 24rpx;
  177. }
  178. .title3 {
  179. width: 314rpx;
  180. height: 40rpx;
  181. font-size: 28rpx;
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 500;
  184. color: #333333;
  185. margin-top: 16rpx;
  186. }
  187. .video {
  188. flex-wrap: wrap;
  189. }
  190. .newbox {
  191. // width: 702rpx;
  192. min-height: 870rpx;
  193. background: #FFFFFF;
  194. border-radius: 16rpx;
  195. margin-top: 20rpx;
  196. padding: 28rpx 20rpx;
  197. }
  198. .bottom1 {
  199. margin-top: 16rpx;
  200. }
  201. .item {
  202. margin-top: 20rpx;
  203. }
  204. .money {
  205. font-size: 28rpx;
  206. font-family: SFPro, SFPro;
  207. font-weight: 400;
  208. color: #CC3300;
  209. margin-left: 8rpx;
  210. }
  211. .ding {
  212. font-size: 24rpx;
  213. font-family: PingFangSC, PingFang SC;
  214. font-weight: 400;
  215. color: #222222;
  216. }
  217. .author {
  218. font-size: 24rpx;
  219. font-family: PingFangSC, PingFang SC;
  220. font-weight: 400;
  221. color: #444444;
  222. margin-top: 8rpx;
  223. width: 202rpx;
  224. }
  225. .author2 {
  226. font-size: 24rpx;
  227. font-family: PingFangSC, PingFang SC;
  228. font-weight: 400;
  229. color: #444444;
  230. margin-top: 8rpx;
  231. width: 322rpx;
  232. }
  233. .title2 {
  234. width: 198rpx;
  235. height: 36rpx;
  236. font-size: 26rpx;
  237. font-family: SFPro, SFPro;
  238. font-weight: 500;
  239. color: #333333;
  240. line-height: 30rpx;
  241. margin-top: 16rpx;
  242. }
  243. .bookimg {
  244. width: 202rpx;
  245. height: 266rpx;
  246. background: #D8D8D8;
  247. border-radius: 8rpx;
  248. }
  249. .cai {
  250. padding-top: 10rpx;
  251. flex-wrap: wrap;
  252. }
  253. .look {
  254. width: 130rpx;
  255. height: 40rpx;
  256. background: rgba(6, 169, 113, 0.1);
  257. border-radius: 24rpx;
  258. font-size: 20rpx;
  259. font-weight: 400;
  260. color: #06A971;
  261. line-height: 40rpx;
  262. text-align: center;
  263. // padding: 6rpx 12rpx;
  264. box-sizing: border-box;
  265. }
  266. .title1 {
  267. font-size: 32rpx;
  268. font-family: STSongti-SC, STSongti-SC;
  269. font-weight: bold;
  270. color: #000000;
  271. }
  272. .jiang {
  273. // width: 702rpx;
  274. height: 978rpx;
  275. background: #FFFFFF;
  276. border-radius: 16rpx;
  277. padding: 28rpx 20rpx 0;
  278. }
  279. .back {
  280. position: relative;
  281. min-height: 80vh;
  282. z-index: 99;
  283. }
  284. .wrap {
  285. margin-top: 40rpx;
  286. height: 280rpx;
  287. border-radius: 20rpx;
  288. }
  289. .pad {
  290. padding: 0 28rpx;
  291. }
  292. .one {
  293. font-size: 32rpx;
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: 500;
  296. color: #222222;
  297. }
  298. .two {
  299. font-size: 30rpx;
  300. font-family: PingFangSC, PingFang SC;
  301. font-weight: 400;
  302. color: #555555;
  303. }
  304. .bottom {
  305. width: 64rpx;
  306. height: 12rpx;
  307. background: linear-gradient(270deg, rgba(6, 169, 113, 0) 0%, #0ED4AA 100%);
  308. margin-top: -15rpx;
  309. }
  310. .index-search {
  311. width: 414rpx;
  312. height: 60rpx;
  313. background: #FFFFFF;
  314. border-radius: 38rpx;
  315. padding-left: 34rpx;
  316. }
  317. .page {
  318. // padding: 0 28rpx;
  319. min-height: 100vh;
  320. background: rgba(243, 243, 243, 1);
  321. position: relative;
  322. z-index: 1;
  323. }
  324. .button {
  325. width: 128rpx;
  326. height: 60rpx;
  327. background: #06A971;
  328. border-radius: 30rpx;
  329. // margin-left: 24rpx;
  330. line-height: 60rpx;
  331. text-align: center;
  332. font-size: 24rpx;
  333. font-family: PingFangSC, PingFang SC;
  334. font-weight: 400;
  335. color: #FFFFFF;
  336. }
  337. .back1 {
  338. position: fixed;
  339. top: 0;
  340. left: 0;
  341. z-index: -1;
  342. width: 100vw;
  343. height: 432rpx;
  344. }
  345. .index-navbar {
  346. position: fixed;
  347. top: 0;
  348. left: 0;
  349. width: 100vw;
  350. z-index: 999;
  351. // overflow: hidden;
  352. }
  353. </style>