index.vue 9.2 KB

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