ty-electronic.vue 8.6 KB

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