ty-electronic.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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);">
  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;">
  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.entity_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. };
  102. },
  103. created(options) {
  104. //新书
  105. this.getBooksList()
  106. this.getBooksLevel()
  107. this.getBooksSpeciality()
  108. this.getBooksArrangement()
  109. },
  110. methods: {
  111. toinfo(id) {
  112. uni.navigateTo({
  113. url: '/pages/index/bookinfo?id=' + id
  114. })
  115. },
  116. //确定
  117. enter() {
  118. this.onpageshow = false
  119. this.getBooksList()
  120. },
  121. changeitem(index, id) {
  122. if (this.current == 0) {
  123. this.level_id = id
  124. this.item1 = index
  125. }
  126. if (this.current == 1) {
  127. this.arrangement_id = id
  128. this.item2 = index
  129. }
  130. if (this.current == 2) {
  131. this.speciality_id = id
  132. this.item3 = index
  133. }
  134. },
  135. //级别
  136. getBooksLevel() {
  137. this.$u.post('api/books/getBooksLevel', {}).then(res => {
  138. this.itemlist = res.data
  139. })
  140. },
  141. getBooksArrangement() {
  142. this.$u.post('api/books/getBooksArrangement', {}).then(res => {
  143. this.itemlist1 = res.data
  144. })
  145. },
  146. getBooksSpeciality() {
  147. this.$u.post('api/books/getBooksSpeciality', {}).then(res => {
  148. this.itemlist2 = res.data
  149. })
  150. },
  151. change(index) {
  152. this.onpageshow = true
  153. this.current = index
  154. this.is_new_recommend = ''
  155. this.is_awards = ''
  156. this.getBooksList()
  157. if (this.current == 0) {
  158. this.getBooksLevel()
  159. }
  160. if (this.current == 1) {
  161. this.itemlist = this.itemlist1
  162. }
  163. if (this.current == 2) {
  164. this.itemlist = this.itemlist2
  165. }
  166. },
  167. getBooksList() {
  168. if (this.current == 4) {
  169. this.is_new_recommend = 0
  170. this.onpageshow = false
  171. }
  172. if (this.current == 3) {
  173. this.is_awards = 0
  174. this.onpageshow = false
  175. }
  176. this.$u.post('api/books/getBooksList', {
  177. level_id: this.level_id,
  178. arrangement_id: this.arrangement_id,
  179. speciality_id: this.speciality_id,
  180. book_type: this.book_type,
  181. is_new_recommend: this.is_new_recommend,
  182. is_awards: this.is_awards,
  183. page: this.page,
  184. limit: this.limit
  185. }).then(res => {
  186. console.log('list', res);
  187. this.paperlist = res.data.data
  188. })
  189. }
  190. },
  191. }
  192. </script>
  193. <style lang="scss">
  194. .itema {
  195. height: 60rpx;
  196. border-radius: 8rpx;
  197. border: 1rpx solid rgba(151, 151, 151, 1);
  198. font-size: 26rpx;
  199. font-family: PingFangSC, PingFang SC;
  200. font-weight: 400;
  201. color: #444444;
  202. margin-right: 24rpx;
  203. line-height: 60rpx;
  204. text-align: center;
  205. padding: 0 27rpx;
  206. box-sizing: border-box;
  207. margin-top: 20rpx;
  208. }
  209. .itemb {
  210. height: 60rpx;
  211. border-radius: 8rpx;
  212. border: 1rpx solid rgba(6, 169, 113, 0.1);
  213. background: rgba(6, 169, 113, 0.1);
  214. font-size: 26rpx;
  215. font-family: PingFangSC, PingFang SC;
  216. font-weight: 400;
  217. color: #06A971;
  218. margin-right: 24rpx;
  219. line-height: 60rpx;
  220. text-align: center;
  221. padding: 0 27rpx;
  222. margin-top: 20rpx;
  223. }
  224. .btn1 {
  225. width: 260rpx;
  226. height: 76rpx;
  227. background: #F3F3F3;
  228. border-radius: 12rpx;
  229. line-height: 76rpx;
  230. text-align: center;
  231. font-size: 28rpx;
  232. font-family: PingFangSC, PingFang SC;
  233. font-weight: 400;
  234. color: #333333;
  235. }
  236. .btn2 {
  237. width: 402rpx;
  238. height: 76rpx;
  239. background: #06A971;
  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: #FFFFFF;
  247. }
  248. .absolt {
  249. display: flex;
  250. flex-direction: column;
  251. justify-content: space-between;
  252. position: absolute;
  253. top: 30rpx;
  254. left: -24rpx;
  255. // height: 300rpx;
  256. box-sizing: border-box;
  257. background: #FFFFFF;
  258. border-radius: 0rpx 0rpx 20rpx 20rpx;
  259. width: 750rpx;
  260. z-index: 100;
  261. }
  262. .title {
  263. font-size: 28rpx;
  264. font-family: PingFangSC, PingFang SC;
  265. font-weight: 500;
  266. color: #333333;
  267. margin-top: 20rpx;
  268. width: 334rpx;
  269. }
  270. .writer {
  271. font-size: 24rpx;
  272. font-family: PingFangSC, PingFang SC;
  273. font-weight: 400;
  274. color: #444444;
  275. margin-top: 8rpx;
  276. width: 334rpx;
  277. }
  278. .money {
  279. font-size: 28rpx;
  280. font-family: SFPro, SFPro;
  281. font-weight: 400;
  282. color: #CC3300;
  283. }
  284. .ding {
  285. font-size: 24rpx;
  286. font-family: PingFangSC, PingFang SC;
  287. font-weight: 400;
  288. color: #222222;
  289. }
  290. .page1 {
  291. width: 750rpx;
  292. background: #FFFFFF;
  293. border-radius: 28rpx 28rpx 0rpx 0rpx;
  294. padding: 28rpx 24rpx;
  295. // height: 70vh;
  296. height: 75.5vh;
  297. }
  298. .top {
  299. .fen {
  300. font-size: 24rpx;
  301. font-family: PingFangSC, PingFang SC;
  302. font-weight: 400;
  303. color: #444444;
  304. }
  305. .new {
  306. font-size: 24rpx;
  307. font-family: PingFangSC, PingFang SC;
  308. font-weight: 500;
  309. color: #06A971;
  310. }
  311. }
  312. </style>