index-search.vue 7.1 KB

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