index-search.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <template>
  2. <view class="tap">
  3. <view class="">
  4. <u-navbar :placeholder='true' :fixed='true'>
  5. <u-search placeholder="请输入书名、作者搜索" v-model="keyword1" :show-action="false"
  6. @search="tosearch(1)"></u-search>
  7. </u-navbar>
  8. </view>
  9. <view class="u-flex u-row-between top" v-if="show1">
  10. <view class="his">
  11. 搜索历史
  12. </view>
  13. <view class="" @click="clear">
  14. <u-icon name="trash" color="rgba(0,0,0,.7)" size="28"></u-icon>
  15. </view>
  16. </view>
  17. <view class="u-flex" style="flex-wrap: wrap;margin-top: 24rpx;" v-if="show1">
  18. <view class="item" style="margin-right: 16rpx;" v-for="(item,index) in search" :key="index" @click="searcha(item)">
  19. {{item}}
  20. </view>
  21. </view>
  22. <view v-if="show" class="u-flex u-row-between pad" style="margin-top:30rpx ;">
  23. <view class="" v-for="(item,index) in list" :key="index" @click="onchange(index)">
  24. <text :class="curret==index?'one':'two' ">{{item}}</text>
  25. <view v-if="curret==index" class="bottom">
  26. </view>
  27. </view>
  28. </view>
  29. <view v-if="show" class="sou">
  30. <text>共{{total}}条“</text>
  31. <text style="color: #0ED4AA;">{{keyword1}}</text>
  32. <text>”相关的搜素结果</text>
  33. </view>
  34. <view class="" v-if="positionlist.length > 0">
  35. <view class="list1">
  36. <view v-for="(item,index) in positionlist" :key="index" class="u-flex" style="margin-top: 28rpx;"
  37. v-if="curret==0">
  38. <image :src="item.image" style="width: 239rpx;height: 240rpx;" mode=""></image>
  39. <view class="u-flex-col " style="margin-left: 20rpx;height: 240rpx;padding: 12rpx 0;
  40. justify-content: space-between;">
  41. <view class="">
  42. <view class="title">{{item.title}}</view>
  43. <view class="writer">{{item.author}}</view>
  44. </view>
  45. <view class="">
  46. <text class="ding">定价</text>
  47. <text class="yang">¥</text>
  48. <text class="money">{{item.price}}</text>
  49. </view>
  50. </view>
  51. </view>
  52. <view v-for="(item,index) in positionlist" :key="index" class="u-flex" style="margin-top: 28rpx;"
  53. v-if="curret==1">
  54. <image :src="item.image" style="width: 239rpx;height: 240rpx;" mode=""></image>
  55. <view class="u-flex-col " style="margin-left: 20rpx;height: 240rpx;padding: 12rpx 0;
  56. justify-content: space-between;">
  57. <view class="">
  58. <view class="title">{{item.title}}</view>
  59. <view class="writer">{{item.author}}</view>
  60. </view>
  61. <view class="">
  62. <text class="ding">定价</text>
  63. <text class="yang">¥</text>
  64. <text class="money">{{item.price}}</text>
  65. </view>
  66. </view>
  67. </view>
  68. <view v-for="(item,index) in VideoList" :key="index" class="top" v-if="curret==2">
  69. <view class="flex">
  70. <image :src="item.image" style="width: 212rpx;height: 128rpx;" mode=""></image>
  71. <view class="" style="margin-left: 20rpx;">
  72. <view class="title1">{{item.title}}</view>
  73. <view class="writer">{{item.lecturer}}</view>
  74. </view>
  75. </view>
  76. <view class="money1">
  77. ¥{{item.price}}
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. </template>
  84. <script>
  85. export default {
  86. data() {
  87. return {
  88. keyword1: '',
  89. search: [],
  90. positionlist: [],
  91. list: [
  92. '纸质书', '电子书', '名师教学视频'
  93. ],
  94. curret: 0,
  95. page: 1,
  96. limit: 10,
  97. show: false,
  98. show1: true,
  99. total: 0,
  100. VideoList: []
  101. };
  102. },
  103. onLoad() {
  104. if (uni.getStorageSync('searchdata')) {
  105. this.search = uni.getStorageSync('searchdata')
  106. }
  107. },
  108. methods: {
  109. searcha(item){
  110. this.keyword1 = item
  111. this.getBooksList()
  112. },
  113. onchange(index) {
  114. this.curret = index
  115. if (index == 2) {
  116. this.getVideoList()
  117. } else {
  118. this.getBooksList()
  119. }
  120. },
  121. clear() {
  122. uni.removeStorageSync('searchdata')
  123. this.search = []
  124. },
  125. tosearch(type) {
  126. if (this.keyword1 != '') {
  127. this.search.push(this.keyword1)
  128. }
  129. uni.setStorageSync('searchdata', this.search)
  130. this.getBooksList()
  131. },
  132. getBooksList() {
  133. this.$u.post('api/books/getBooksList', {
  134. page: this.page,
  135. limit: this.limit,
  136. keywords: this.keyword1,
  137. book_type: this.curret
  138. }).then(res => {
  139. this.positionlist = res.data.data
  140. this.total = res.data.total
  141. if (this.positionlist.length == 0) {
  142. this.show = true
  143. this.show1 = false
  144. } else if (this.positionlist.length > 0) {
  145. this.show = true
  146. this.show1 = false
  147. }
  148. })
  149. },
  150. getVideoList() {
  151. this.$u.post('api/video/getVideoList', {
  152. page: this.pagea,
  153. limit: this.limita,
  154. keywords: this.keyword1
  155. }).then(res => {
  156. console.log('list', res);
  157. this.total = res.data.total
  158. this.VideoList = res.data.data
  159. if (this.VideoList.length == 0) {
  160. this.show = true
  161. this.show1 = false
  162. } else if (this.VideoList.length > 0) {
  163. this.show = true
  164. this.show1 = false
  165. }
  166. })
  167. }
  168. }
  169. }
  170. </script>
  171. <style lang="scss">
  172. .title1 {
  173. font-size: 28rpx;
  174. font-family: SFPro, SFPro;
  175. font-weight: 400;
  176. color: #333333;
  177. }
  178. .title {
  179. font-size: 28rpx;
  180. font-family: SFPro, SFPro;
  181. font-weight: 400;
  182. color: #333333;
  183. }
  184. .top {
  185. margin-top: 26rpx;
  186. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  187. }
  188. .money1 {
  189. font-size: 32rpx;
  190. font-family: SFPro, SFPro;
  191. font-weight: 500;
  192. color: #CC3300;
  193. margin-top: 16rpx;
  194. padding: 0 0 24rpx 0;
  195. margin-left: 232rpx;
  196. }
  197. .one {
  198. font-size: 32rpx;
  199. font-family: PingFangSC, PingFang SC;
  200. font-weight: 500;
  201. color: #222222;
  202. }
  203. .flex {
  204. display: flex;
  205. }
  206. .list1 {
  207. margin-top: 4rpx;
  208. }
  209. .writer {
  210. font-size: 24rpx;
  211. font-family: PingFangSC, PingFang SC;
  212. font-weight: 400;
  213. color: #666666;
  214. margin-top: 20rpx;
  215. }
  216. .yang {
  217. font-size: 24rpx;
  218. font-family: SFPro, SFPro;
  219. font-weight: 400;
  220. color: #CC3300;
  221. }
  222. .money {
  223. font-size: 32rpx;
  224. font-family: SFPro, SFPro;
  225. font-weight: 400;
  226. color: #CC3300;
  227. }
  228. .ding {
  229. font-size: 24rpx;
  230. font-family: PingFangSC, PingFang SC;
  231. font-weight: 400;
  232. color: #555555;
  233. }
  234. .sou {
  235. margin-top: 18rpx;
  236. border-top: 2rpx solid rgba(0, 0, 0, 0.10);
  237. padding: 28rpx 0 0 0;
  238. font-size: 24rpx;
  239. font-family: SFPro, SFPro;
  240. font-weight: 400;
  241. color: #333333;
  242. }
  243. .bottom {
  244. width: 64rpx;
  245. height: 12rpx;
  246. background: linear-gradient(270deg, rgba(6, 169, 113, 0) 0%, #0ED4AA 100%);
  247. margin-top: -15rpx;
  248. }
  249. .two {
  250. font-size: 30rpx;
  251. font-family: PingFangSC, PingFang SC;
  252. font-weight: 400;
  253. color: #555555;
  254. }
  255. .tap {
  256. padding: 0 28rpx 18rpx;
  257. }
  258. .top {
  259. margin-top: 38rpx;
  260. }
  261. .item {
  262. height: 54rpx;
  263. background: #F3F3F3;
  264. border-radius: 6rpx;
  265. line-height: 54rpx;
  266. text-align: center;
  267. font-size: 24rpx;
  268. font-family: PingFangSC, PingFang SC;
  269. font-weight: 400;
  270. color: #222222;
  271. padding: 0 18rpx;
  272. }
  273. .his {
  274. font-size: 28rpx;
  275. font-family: PingFangSC, PingFang SC;
  276. font-weight: 500;
  277. color: #222222;
  278. }
  279. ::v-deep .u-content {
  280. // padding: 0 0 0 106rpx;
  281. }
  282. </style>