ty-paper.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <template>
  2. <view class="page1" style="background: #fff;">
  3. <view class="" style="position: relative;height: 16px;">
  4. <view class="top u-flex u-row-between">
  5. <view class="u-flex" @click="change(0)">
  6. <text :class="current==0?'new':'fen'">教材级别</text>
  7. <image src="/static/images/down.png" style="width: 12rpx;height: 8rpx;margin-left: 8rpx;" mode="">
  8. </image>
  9. </view>
  10. <view class="u-flex" @click="change(1)">
  11. <text :class="current==1?'new':'fen'">教学层次</text>
  12. <image src="/static/images/down.png" style="width: 12rpx;height: 8rpx;margin-left: 8rpx;" mode="">
  13. </image>
  14. </view>
  15. <view class="u-flex" @click="change(2)">
  16. <text :class="current==2?'new':'fen'">专业分类</text>
  17. <image src="/static/images/down.png" style="width: 12rpx;height: 8rpx;margin-left: 8rpx;" mode="">
  18. </image>
  19. </view>
  20. <view @click="change(3)" class="" :class="current==3?'new':'fen'">获奖教材</view>
  21. <view @click="change(4)" :class="current==4?'new':'fen'">新书推荐</view>
  22. </view>
  23. <view class="absolt" v-if="onpageshow">
  24. <div style="padding: 8rpx 28rpx 36rpx;box-sizing: border-box;display: flex;flex-wrap: wrap;">
  25. <view :class="item1==-1?'itemb':'itema'" @click="changeitem(-1,'')">全部</view>
  26. <view :class="item1==index?'itemb':'itema'" v-for="(item,index) in itemlist" :key="index"
  27. @click="changeitem(index,item.id)">
  28. {{item.title}}
  29. </view>
  30. </div>
  31. <view class="u-flex u-row-between" style="padding: 20rpx 28rpx;box-sizing: border-box;">
  32. <view class="btn1" @click="onpageshow=false">取消</view>
  33. <view class="btn2" @click="enter">确认</view>
  34. </view>
  35. </view>
  36. </view>
  37. <scroll-view :scroll-y='true' style="height: calc(100vh - 200px);">
  38. <view class="u-flex u-row-between u-flex-wrap" >
  39. <view class="" @click="toinfo(item.id)" v-for="(item,index) in paperlist" :key="index"
  40. style="margin-top: 26rpx;display: inline-block;">
  41. <image :src="item.image" style="width: 334rpx;height: 460rpx;" mode=""></image>
  42. <view class="title u-line-1">{{item.title}}…</view>
  43. <view class="writer u-line-1">{{item.author}}</view>
  44. <view class="" style="margin-top: 8rpx;">
  45. <text class="ding">定价</text>
  46. <text class="money">¥{{item.entity_price}}</text>
  47. </view>
  48. </view>
  49. </view>
  50. </scroll-view>
  51. </view>
  52. </template>
  53. <script>
  54. export default {
  55. data() {
  56. return {
  57. level_id: '',
  58. arrangement_id: '',
  59. speciality_id: "",
  60. book_type: 0,
  61. is_new_recommend: '',
  62. is_awards: '',
  63. page: 1,
  64. limit: 10,
  65. current: 0,
  66. paperlist: [],
  67. itemlist: [],
  68. item1: -1,
  69. onpageshow: false,
  70. itemid: '',
  71. };
  72. },
  73. created(options) {
  74. //新书
  75. this.getBooksList()
  76. this.getBooksLevel()
  77. },
  78. methods: {
  79. toinfo(id) {
  80. uni.navigateTo({
  81. url: '/pages/index/bookinfo?id=' + id
  82. })
  83. },
  84. //确定
  85. enter() {
  86. this.onpageshow = false
  87. this.getBooksList()
  88. },
  89. changeitem(index, id) {
  90. this.item1 = index
  91. if (this.current == 0) {
  92. this.level_id = id
  93. }
  94. if (this.current == 1) {
  95. this.arrangement_id = id
  96. }
  97. this.item1 = index
  98. if (this.current == 2) {
  99. this.speciality_id = id
  100. }
  101. },
  102. //级别
  103. getBooksLevel() {
  104. this.$u.post('api/books/getBooksLevel', {}).then(res => {
  105. this.itemlist = res.data
  106. })
  107. },
  108. getBooksArrangement() {
  109. this.$u.post('api/books/getBooksArrangement', {}).then(res => {
  110. this.itemlist = res.data
  111. })
  112. },
  113. getBooksSpeciality() {
  114. this.$u.post('api/books/getBooksSpeciality', {}).then(res => {
  115. this.itemlist = res.data
  116. })
  117. },
  118. change(index) {
  119. this.onpageshow = true
  120. this.current = index
  121. this.is_new_recommend = ''
  122. this.is_awards = ''
  123. this.getBooksList()
  124. if (this.current == 0) {
  125. this.getBooksLevel()
  126. }
  127. if (this.current == 1) {
  128. this.getBooksArrangement()
  129. }
  130. if (this.current == 2) {
  131. this.getBooksSpeciality()
  132. }
  133. },
  134. getBooksList() {
  135. if (this.current == 4) {
  136. this.is_new_recommend = 0
  137. this.onpageshow = false
  138. }
  139. if (this.current == 3) {
  140. this.is_awards = 0
  141. this.onpageshow = false
  142. }
  143. this.$u.post('api/books/getBooksList', {
  144. level_id: this.level_id,
  145. arrangement_id: this.arrangement_id,
  146. speciality_id: this.speciality_id,
  147. book_type: this.book_type,
  148. is_new_recommend: this.is_new_recommend,
  149. is_awards: this.is_awards,
  150. page: this.page,
  151. limit: this.limit
  152. }).then(res => {
  153. console.log('list', res);
  154. this.paperlist = res.data.data
  155. })
  156. }
  157. },
  158. }
  159. </script>
  160. <style lang="scss">
  161. .itema {
  162. height: 60rpx;
  163. border-radius: 8rpx;
  164. border: 1rpx solid rgba(151, 151, 151, 1);
  165. font-size: 26rpx;
  166. font-family: PingFangSC, PingFang SC;
  167. font-weight: 400;
  168. color: #444444;
  169. margin-right: 24rpx;
  170. line-height: 60rpx;
  171. text-align: center;
  172. padding: 0 27rpx;
  173. box-sizing: border-box;
  174. margin-top: 20rpx;
  175. }
  176. .itemb {
  177. height: 60rpx;
  178. border-radius: 8rpx;
  179. border: 1rpx solid rgba(6, 169, 113, 0.1);
  180. background: rgba(6, 169, 113, 0.1);
  181. font-size: 26rpx;
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 400;
  184. color: #06A971;
  185. margin-right: 24rpx;
  186. line-height: 60rpx;
  187. text-align: center;
  188. padding: 0 27rpx;
  189. margin-top: 20rpx;
  190. }
  191. .btn1 {
  192. width: 260rpx;
  193. height: 76rpx;
  194. background: #F3F3F3;
  195. border-radius: 12rpx;
  196. line-height: 76rpx;
  197. text-align: center;
  198. font-size: 28rpx;
  199. font-family: PingFangSC, PingFang SC;
  200. font-weight: 400;
  201. color: #333333;
  202. }
  203. .btn2 {
  204. width: 402rpx;
  205. height: 76rpx;
  206. background: #06A971;
  207. border-radius: 12rpx;
  208. line-height: 76rpx;
  209. text-align: center;
  210. font-size: 28rpx;
  211. font-family: PingFangSC, PingFang SC;
  212. font-weight: 400;
  213. color: #FFFFFF;
  214. }
  215. .absolt {
  216. display: flex;
  217. flex-direction: column;
  218. justify-content: space-between;
  219. position: absolute;
  220. top: 30rpx;
  221. left: -24rpx;
  222. // height: 300rpx;
  223. box-sizing: border-box;
  224. background: #FFFFFF;
  225. border-radius: 0rpx 0rpx 20rpx 20rpx;
  226. width: 750rpx;
  227. z-index: 100;
  228. }
  229. .title {
  230. font-size: 28rpx;
  231. font-family: PingFangSC, PingFang SC;
  232. font-weight: 500;
  233. color: #333333;
  234. margin-top: 20rpx;
  235. width: 334rpx;
  236. }
  237. .writer {
  238. font-size: 24rpx;
  239. font-family: PingFangSC, PingFang SC;
  240. font-weight: 400;
  241. color: #444444;
  242. margin-top: 8rpx;
  243. width: 334rpx;
  244. }
  245. .money {
  246. font-size: 28rpx;
  247. font-family: SFPro, SFPro;
  248. font-weight: 400;
  249. color: #CC3300;
  250. }
  251. .ding {
  252. font-size: 24rpx;
  253. font-family: PingFangSC, PingFang SC;
  254. font-weight: 400;
  255. color: #222222;
  256. }
  257. .page1 {
  258. width: 750rpx;
  259. background: #FFFFFF;
  260. border-radius: 28rpx 28rpx 0rpx 0rpx;
  261. padding: 28rpx 24rpx;
  262. // height: 70vh;
  263. height: 75.5vh;
  264. }
  265. .top {
  266. .fen {
  267. font-size: 24rpx;
  268. font-family: PingFangSC, PingFang SC;
  269. font-weight: 400;
  270. color: #444444;
  271. }
  272. .new {
  273. font-size: 24rpx;
  274. font-family: PingFangSC, PingFang SC;
  275. font-weight: 500;
  276. color: #06A971;
  277. }
  278. }
  279. </style>