search.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <u-search placeholder="热门搜索" v-model="searchValue" :showAction="true" @search="search" actionText="取消" @custom="custom" @change="change"></u-search>
  5. </view>
  6. <view v-if="is_search == 0">
  7. <view class="hflex acenter jbetween">
  8. <view class="title">搜索历史</view>
  9. <u-icon name="trash" color="#555555" size="16"></u-icon>
  10. </view>
  11. <view class="list hflex acenter fwrap">
  12. <block v-for="(item,index) in history" :key="index">
  13. <view class="item" @click="search(item)">{{item}}</view>
  14. </block>
  15. </view>
  16. <view class="">
  17. <view class="title">热门搜索</view>
  18. </view>
  19. <view class="list hflex acenter fwrap">
  20. <block v-for="(item,index) in hotList" :key="index">
  21. <view class="item hflex acenter" @click="search(item.name)">
  22. <view>{{item.name}}</view>
  23. <view class="hot" v-if="item.is_hot == 1">热</view>
  24. </view>
  25. </block>
  26. </view>
  27. </view>
  28. <view v-else class="bg">
  29. <view class="list2 hflex acenter fwrap">
  30. <block v-for="(item,index) in searchList" :key="index">
  31. <view class="list_item" @click="toDetail(item.id)">
  32. <image :src="item.img" mode="aspectFill" class="item_img"></image>
  33. <view style="box-sizing: border-box;padding: 12rpx 10rpx 0;">
  34. <view class="item_name">{{item.name}}</view>
  35. <!-- <view class="hflex acenter " style="padding-top: 12rpx;">
  36. <view class="item_type">{{item.material}}</view>
  37. <view class="item_type">{{item.parts}}</view>
  38. </view> -->
  39. <view class="item_price">¥{{item.price}}</view>
  40. </view>
  41. </view>
  42. </block>
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import $api from '@/static/js/api.js'
  49. var that = ''
  50. export default {
  51. data() {
  52. return {
  53. searchValue: '',
  54. history: [],
  55. hotList: [
  56. {
  57. name: '船机维修',
  58. is_hot: 1
  59. },
  60. {
  61. name: '船机维修',
  62. is_hot: 1
  63. },
  64. {
  65. name: '船机维修',
  66. is_hot: 0
  67. },
  68. {
  69. name: '船机维修',
  70. is_hot: 0
  71. },
  72. {
  73. name: '船机维修',
  74. is_hot: 0
  75. },
  76. {
  77. name: '船机维修',
  78. is_hot: 0
  79. },
  80. {
  81. name: '船机维修',
  82. is_hot: 1
  83. },
  84. ],
  85. is_search: 0,
  86. searchList: [
  87. {
  88. id: 1,
  89. img: '/static/images/index/class_img4.png',
  90. name: '王思聪同款王思聪同款豪华游艇大型钓鱼船户外海上滑梯水豪华游艇大型钓鱼船户外海上滑梯水',
  91. material: '玻璃钢',
  92. parts: '氧气罐',
  93. price: '9928.00',
  94. },
  95. {
  96. id: 1,
  97. img: '/static/images/index/class_img4.png',
  98. name: '王思聪同款王思聪同款豪华游艇大型钓鱼船户外海上滑梯水豪华游艇大型钓鱼船户外海上滑梯水',
  99. material: '玻璃钢',
  100. parts: '氧气罐',
  101. price: '9928.00',
  102. },
  103. ],
  104. }
  105. },
  106. onLoad(options) {
  107. that = this
  108. if(options.value) {
  109. that.searchValue = options.value
  110. that.search(that.searchValue)
  111. that.change(that.searchValue)
  112. }
  113. that.history = uni.getStorageSync('historySC')
  114. if(!that.history) {
  115. that.history = []
  116. }
  117. },
  118. methods: {
  119. search(e) {
  120. console.log(e);
  121. var is_some = 0
  122. that.searchValue = e
  123. if (that.history.length > 0) {
  124. for(var i=0;i<that.history.length;i++) {
  125. if(that.history[i] == that.searchValue) {
  126. is_some = 1;
  127. }
  128. }
  129. if(is_some == 0) {
  130. that.history.unshift(that.searchValue)
  131. }
  132. } else {
  133. that.history.push(that.searchValue)
  134. }
  135. if(that.history.length > 9) {
  136. that.history.pop()
  137. }
  138. uni.setStorageSync("historySC",that.history)
  139. that.is_search = 1
  140. },
  141. change(e) {
  142. if(e == '') {
  143. that.is_search = 0
  144. }
  145. },
  146. custom() {
  147. $api.jump(-1)
  148. }
  149. },
  150. }
  151. </script>
  152. <style lang="scss" scoped>
  153. .content {
  154. padding: 0 30rpx;
  155. position: relative;
  156. .top {
  157. width: 100%;
  158. background: #fff;
  159. padding: 16rpx 30rpx 8rpx;
  160. box-sizing: border-box;
  161. // margin-top: ;
  162. }
  163. .title {
  164. font-size: 30rpx;
  165. font-weight: 500;
  166. color: #222222;
  167. line-height: 42rpx;
  168. padding: 24rpx 0;
  169. }
  170. .list {
  171. .item {
  172. width: auto;
  173. background: #F2F2F2;
  174. border-radius: 12px;
  175. box-sizing: border-box;
  176. padding: 8rpx 20rpx;
  177. font-size: 24rpx;
  178. font-weight: 400;
  179. color: #555555;
  180. margin: 0 24rpx 28rpx 0;
  181. .hot {
  182. width: 28rpx;
  183. height: 28rpx;
  184. margin-left: 12rpx;
  185. background-color: #ff5c37;
  186. border-radius: 20%;
  187. font-size: 18rpx;
  188. color: #fff;
  189. text-align: center;
  190. line-height: 28rpx;
  191. }
  192. }
  193. }
  194. .bg{
  195. position: absolute;
  196. left: 0;
  197. top: 97rpx;
  198. min-height: calc(100vh - 97rpx);
  199. width: 100%;
  200. background: #F4F4F4;
  201. box-sizing: border-box;
  202. padding: 20rpx 30rpx;
  203. }
  204. .list2 {
  205. .list_item {
  206. width: 334rpx;
  207. background: #FFFFFF;
  208. border-radius: 20rpx;
  209. box-sizing: border-box;
  210. padding: 0 0 22rpx;
  211. margin: 0 22rpx 20rpx 0;
  212. .item_img {
  213. width: 334rpx;
  214. height: 280rpx;
  215. border-radius: 20rpx 20rpx 0px 0px;
  216. }
  217. .item_name {
  218. width: 100%;
  219. text-overflow: ellipsis;
  220. overflow: hidden;
  221. display: -webkit-box;
  222. -webkit-box-orient: vertical;
  223. box-orient: vertical;
  224. line-clamp: 2;
  225. -webkit-line-clamp: 2;
  226. font-size: 28rpx;
  227. font-weight: 400;
  228. color: #222222;
  229. line-height: 40rpx;
  230. }
  231. .item_type {
  232. height: 28rpx;
  233. background: #F5F5F5;
  234. border-radius: 4rpx;
  235. font-size: 20rpx;
  236. font-weight: 400;
  237. color: #999999;
  238. line-height: 28rpx;
  239. padding: 0 14rpx;
  240. margin-right: 12rpx;
  241. }
  242. .item_price {
  243. padding-top: 12rpx;
  244. font-size: 28rpx;
  245. font-weight: bold;
  246. color: #FF4747;
  247. line-height: 32rpx;
  248. }
  249. }
  250. .list_item:nth-child(2n+2) {
  251. margin: 0 0 20rpx;
  252. }
  253. }
  254. }
  255. </style>