index-search.vue 7.3 KB

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