index.vue 8.5 KB

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