search.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <u-search placeholder="热门搜索" v-model="searchValue" :showAction="true" @search="search" actionText="取消" @custom="clear" @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() {
  107. that = this
  108. that.history = uni.getStorageSync('historySC')
  109. if(!that.history) {
  110. that.history = []
  111. }
  112. },
  113. methods: {
  114. search(e) {
  115. console.log(e);
  116. var is_some = 0
  117. that.searchValue = e
  118. if (that.history.length > 0) {
  119. for(var i=0;i<that.history.length;i++) {
  120. if(that.history[i] == that.searchValue) {
  121. is_some = 1;
  122. }
  123. }
  124. if(is_some == 0) {
  125. that.history.unshift(that.searchValue)
  126. }
  127. } else {
  128. that.history.push(that.searchValue)
  129. }
  130. if(that.history.length > 9) {
  131. that.history.pop()
  132. }
  133. uni.setStorageSync("historySC",that.history)
  134. that.is_search = 1
  135. },
  136. change(e) {
  137. if(e == '') {
  138. that.is_search = 0
  139. }
  140. },
  141. clear(e) {
  142. that.is_search = 0,
  143. that.searchValue = ''
  144. }
  145. },
  146. }
  147. </script>
  148. <style lang="scss" scoped>
  149. .content {
  150. padding: 0 30rpx;
  151. position: relative;
  152. .top {
  153. width: 100%;
  154. background: #fff;
  155. padding: 16rpx 30rpx 8rpx;
  156. box-sizing: border-box;
  157. // margin-top: ;
  158. }
  159. .title {
  160. font-size: 30rpx;
  161. font-weight: 500;
  162. color: #222222;
  163. line-height: 42rpx;
  164. padding: 24rpx 0;
  165. }
  166. .list {
  167. .item {
  168. width: auto;
  169. background: #F2F2F2;
  170. border-radius: 12px;
  171. box-sizing: border-box;
  172. padding: 8rpx 20rpx;
  173. font-size: 24rpx;
  174. font-weight: 400;
  175. color: #555555;
  176. margin: 0 24rpx 28rpx 0;
  177. .hot {
  178. width: 28rpx;
  179. height: 28rpx;
  180. margin-left: 12rpx;
  181. background-color: #ff5c37;
  182. border-radius: 20%;
  183. font-size: 18rpx;
  184. color: #fff;
  185. text-align: center;
  186. line-height: 28rpx;
  187. }
  188. }
  189. }
  190. .bg{
  191. position: absolute;
  192. left: 0;
  193. top: 97rpx;
  194. min-height: calc(100vh - 97rpx);
  195. width: 100%;
  196. background: #F4F4F4;
  197. box-sizing: border-box;
  198. padding: 20rpx 30rpx;
  199. }
  200. .list2 {
  201. .list_item {
  202. width: 334rpx;
  203. background: #FFFFFF;
  204. border-radius: 20rpx;
  205. box-sizing: border-box;
  206. padding: 0 0 22rpx;
  207. margin: 0 22rpx 20rpx 0;
  208. .item_img {
  209. width: 334rpx;
  210. height: 280rpx;
  211. border-radius: 20rpx 20rpx 0px 0px;
  212. }
  213. .item_name {
  214. width: 100%;
  215. text-overflow: ellipsis;
  216. overflow: hidden;
  217. display: -webkit-box;
  218. -webkit-box-orient: vertical;
  219. box-orient: vertical;
  220. line-clamp: 2;
  221. -webkit-line-clamp: 2;
  222. font-size: 28rpx;
  223. font-weight: 400;
  224. color: #222222;
  225. line-height: 40rpx;
  226. }
  227. .item_type {
  228. height: 28rpx;
  229. background: #F5F5F5;
  230. border-radius: 4rpx;
  231. font-size: 20rpx;
  232. font-weight: 400;
  233. color: #999999;
  234. line-height: 28rpx;
  235. padding: 0 14rpx;
  236. margin-right: 12rpx;
  237. }
  238. .item_price {
  239. padding-top: 12rpx;
  240. font-size: 28rpx;
  241. font-weight: bold;
  242. color: #FF4747;
  243. line-height: 32rpx;
  244. }
  245. }
  246. .list_item:nth-child(2n+2) {
  247. margin: 0 0 20rpx;
  248. }
  249. }
  250. }
  251. </style>