search.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <u-search placeholder="搜索百知文库内容" v-model="searchValue" :showAction="false" @search="search" @change="clear"></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 >
  29. <view class="list2">
  30. <block v-for="(item,index) in searchList" :key="index">
  31. <view class="item_box">
  32. <view class="box_title">{{item.name}}</view>
  33. <view class="hflex acenter">
  34. <view v-if="item.img !== ''">
  35. <image :src="item.img" mode="aspectFill" class="item_img"></image>
  36. </view>
  37. <view>
  38. <view class="item_text">{{item.content}}</view>
  39. <view class="hflex acenter">
  40. <view class="avatar_box">
  41. <image :src="item.avatar" class="avatar"></image>
  42. </view>
  43. <view class="user_text">{{item.title}}</view>
  44. <view v-if="item.type" class="blue_v">
  45. V
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </block>
  52. </view>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import $api from '@/static/js/api.js'
  58. var that = ''
  59. export default {
  60. data() {
  61. return {
  62. searchValue: '',
  63. history: [],
  64. hotList: [
  65. {
  66. name: '船机维修',
  67. is_hot: 1
  68. },
  69. {
  70. name: '船机维修',
  71. is_hot: 1
  72. },
  73. {
  74. name: '船机维修',
  75. is_hot: 0
  76. },
  77. {
  78. name: '船机维修',
  79. is_hot: 0
  80. },
  81. {
  82. name: '船机维修',
  83. is_hot: 0
  84. },
  85. {
  86. name: '船机维修',
  87. is_hot: 0
  88. },
  89. {
  90. name: '船机维修',
  91. is_hot: 1
  92. },
  93. ],
  94. is_search: 0,
  95. searchList: [
  96. {
  97. name: '在高质量发展中扎实推动共同富裕!',
  98. img: '/static/images/index/class_img3.png',
  99. content: '在高质量发展中扎实推动共同富裕!!在高质量发展中扎实推动共同富!在…',
  100. avatar: '/static/images/mine/avatar1.jpg',
  101. title: '船百知官方账号',
  102. type: 1
  103. },
  104. {
  105. name: '在高质量发展中扎实推动共同富裕!',
  106. img: '',
  107. content: '在高质量发展中扎实推动共同富裕!!在高质量发展中扎实推动共同富!在…',
  108. avatar: '/static/images/mine/avatar1.jpg',
  109. title: '船百知官方账号',
  110. type: 1
  111. },
  112. ],
  113. }
  114. },
  115. onLoad() {
  116. that = this
  117. that.history = uni.getStorageSync('historyBZ')
  118. if(!that.history) {
  119. that.history = []
  120. }
  121. },
  122. methods: {
  123. search(e) {
  124. console.log(e);
  125. var is_some = 0
  126. that.searchValue = e
  127. if (that.history.length > 0) {
  128. for(var i=0;i<that.history.length;i++) {
  129. if(that.history[i] == that.searchValue) {
  130. is_some = 1;
  131. }
  132. }
  133. if(is_some == 0) {
  134. that.history.unshift(that.searchValue)
  135. }
  136. } else {
  137. that.history.push(that.searchValue)
  138. }
  139. if(that.history.length > 9) {
  140. that.history.pop()
  141. }
  142. uni.setStorageSync("historyBZ",that.history)
  143. that.is_search = 1
  144. },
  145. clear(e) {
  146. if(e == '') {
  147. that.is_search = 0
  148. }
  149. }
  150. },
  151. }
  152. </script>
  153. <style lang="scss" scoped>
  154. .content {
  155. padding: 0 30rpx;
  156. .top {
  157. width: 100%;
  158. background: #fff;
  159. padding: 36rpx 30rpx 36rpx;
  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. .list2 {
  195. .item_box {
  196. width: 100%;
  197. padding: 36rpx 0;
  198. border-bottom: 1rpx solid #F3F3F3;
  199. .box_title {
  200. font-size: 32rpx;
  201. font-weight: 400;
  202. color: #333333;
  203. line-height: 44rpx;
  204. margin-bottom: 16rpx;
  205. }
  206. .item_img {
  207. width: 200rpx;
  208. height: 144rpx;
  209. border-radius: 12rpx;
  210. margin-right: 20rpx;
  211. }
  212. .item_text {
  213. font-size: 26rpx;
  214. font-weight: 400;
  215. color: #666666;
  216. line-height: 36rpx;
  217. text-overflow: ellipsis;
  218. overflow: hidden;
  219. display: -webkit-box;
  220. -webkit-box-orient: vertical;
  221. box-orient: vertical;
  222. line-clamp: 2;
  223. -webkit-line-clamp: 2;
  224. margin-bottom: 36rpx;
  225. }
  226. .avatar_box {
  227. margin-right: 8rpx;
  228. .avatar {
  229. width: 32rpx;
  230. height: 32rpx;
  231. border-radius: 50%;
  232. }
  233. }
  234. .user_text {
  235. font-size: 24rpx;
  236. font-weight: 400;
  237. color: #666666;
  238. line-height: 34rpx;
  239. }
  240. .blue_v {
  241. background: #506DFF;
  242. border-radius: 12rpx 4rpx 12rpx 4rpx;
  243. margin-left: 8rpx;
  244. text-align: center;
  245. line-height: 28rpx;
  246. // padding: 6rpx;
  247. width: 28rpx;
  248. height: 28rpx;
  249. color: #fff;
  250. font-size: 14rpx;
  251. }
  252. }
  253. }
  254. }
  255. </style>