ty-paper.vue 6.9 KB

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