index.vue 8.6 KB

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