index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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. // console.log(res);
  140. this.newlist = res.data.data
  141. })
  142. },
  143. //获奖推荐
  144. getawardslist() {
  145. this.$u.post('api/books/getBooksList', {
  146. is_awards: 0,
  147. page: this.page1,
  148. limit: this.limit1
  149. }).then(res => {
  150. // console.log('award', res);
  151. this.awardlist = res.data.data
  152. })
  153. },
  154. onchange(index) {
  155. this.curret = index
  156. },
  157. toindexsearch() {
  158. uni.navigateTo({
  159. url: "/pages/index/index-search"
  160. })
  161. },
  162. toinfo(id) {
  163. uni.navigateTo({
  164. url: '/pages/index/bookinfo?id=' + id
  165. })
  166. },
  167. contribute() {
  168. uni.navigateTo({
  169. url: '/pages/index/contribute'
  170. })
  171. }
  172. },
  173. }
  174. </script>
  175. <style lang="scss" scoped>
  176. .item2 {
  177. margin-top: 24rpx;
  178. }
  179. .title3 {
  180. width: 314rpx;
  181. height: 40rpx;
  182. font-size: 28rpx;
  183. font-family: PingFangSC, PingFang SC;
  184. font-weight: 500;
  185. color: #333333;
  186. margin-top: 16rpx;
  187. }
  188. .video {
  189. flex-wrap: wrap;
  190. }
  191. .newbox {
  192. // width: 702rpx;
  193. min-height: 870rpx;
  194. background: #FFFFFF;
  195. border-radius: 16rpx;
  196. margin-top: 20rpx;
  197. padding: 28rpx 20rpx;
  198. }
  199. .bottom1 {
  200. margin-top: 16rpx;
  201. }
  202. .item {
  203. margin-top: 20rpx;
  204. }
  205. .money {
  206. font-size: 28rpx;
  207. font-family: SFPro, SFPro;
  208. font-weight: 400;
  209. color: #CC3300;
  210. margin-left: 8rpx;
  211. }
  212. .ding {
  213. font-size: 24rpx;
  214. font-family: PingFangSC, PingFang SC;
  215. font-weight: 400;
  216. color: #222222;
  217. }
  218. .author {
  219. font-size: 24rpx;
  220. font-family: PingFangSC, PingFang SC;
  221. font-weight: 400;
  222. color: #444444;
  223. margin-top: 8rpx;
  224. width: 202rpx;
  225. }
  226. .author2 {
  227. font-size: 24rpx;
  228. font-family: PingFangSC, PingFang SC;
  229. font-weight: 400;
  230. color: #444444;
  231. margin-top: 8rpx;
  232. width: 322rpx;
  233. }
  234. .title2 {
  235. width: 198rpx;
  236. height: 36rpx;
  237. font-size: 26rpx;
  238. font-family: SFPro, SFPro;
  239. font-weight: 500;
  240. color: #333333;
  241. line-height: 30rpx;
  242. margin-top: 16rpx;
  243. }
  244. .bookimg {
  245. width: 202rpx;
  246. height: 266rpx;
  247. background: #D8D8D8;
  248. border-radius: 8rpx;
  249. }
  250. .cai {
  251. padding-top: 10rpx;
  252. flex-wrap: wrap;
  253. }
  254. .look {
  255. width: 130rpx;
  256. height: 40rpx;
  257. background: rgba(6, 169, 113, 0.1);
  258. border-radius: 24rpx;
  259. font-size: 20rpx;
  260. font-weight: 400;
  261. color: #06A971;
  262. line-height: 40rpx;
  263. text-align: center;
  264. // padding: 6rpx 12rpx;
  265. box-sizing: border-box;
  266. }
  267. .title1 {
  268. font-size: 32rpx;
  269. font-family: STSongti-SC, STSongti-SC;
  270. font-weight: bold;
  271. color: #000000;
  272. }
  273. .jiang {
  274. // width: 702rpx;
  275. height: 978rpx;
  276. background: #FFFFFF;
  277. border-radius: 16rpx;
  278. padding: 28rpx 20rpx 0;
  279. }
  280. .back {
  281. position: relative;
  282. min-height: 80vh;
  283. z-index: 99;
  284. }
  285. .wrap {
  286. margin-top: 40rpx;
  287. height: 280rpx;
  288. border-radius: 20rpx;
  289. }
  290. .pad {
  291. padding: 0 28rpx;
  292. }
  293. .one {
  294. font-size: 32rpx;
  295. font-family: PingFangSC, PingFang SC;
  296. font-weight: 500;
  297. color: #222222;
  298. }
  299. .two {
  300. font-size: 30rpx;
  301. font-family: PingFangSC, PingFang SC;
  302. font-weight: 400;
  303. color: #555555;
  304. }
  305. .bottom {
  306. width: 64rpx;
  307. height: 12rpx;
  308. background: linear-gradient(270deg, rgba(6, 169, 113, 0) 0%, #0ED4AA 100%);
  309. margin-top: -15rpx;
  310. }
  311. .index-search {
  312. width: 414rpx;
  313. height: 60rpx;
  314. background: #FFFFFF;
  315. border-radius: 38rpx;
  316. padding-left: 34rpx;
  317. }
  318. .page {
  319. // padding: 0 28rpx;
  320. min-height: 92.5vh;
  321. background: rgba(243, 243, 243, 1);
  322. position: relative;
  323. z-index: 1;
  324. }
  325. .button {
  326. width: 128rpx;
  327. height: 60rpx;
  328. background: #06A971;
  329. border-radius: 30rpx;
  330. // margin-left: 24rpx;
  331. line-height: 60rpx;
  332. text-align: center;
  333. font-size: 24rpx;
  334. font-family: PingFangSC, PingFang SC;
  335. font-weight: 400;
  336. color: #FFFFFF;
  337. }
  338. .back1 {
  339. position: fixed;
  340. top: 0;
  341. left: 0;
  342. z-index: -1;
  343. width: 100vw;
  344. height: 432rpx;
  345. }
  346. .index-navbar {
  347. position: fixed;
  348. top: 0;
  349. left: 0;
  350. width: 100vw;
  351. z-index: 999;
  352. // overflow: hidden;
  353. }
  354. </style>