huati-search.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <template>
  2. <view class="content">
  3. <view class="search">
  4. <u-search placeholder="搜索话题" v-model="keyword" clearabled :showAction="false" @search="tosearch"></u-search>
  5. </view>
  6. <view class="center" v-if="keyword == ''">
  7. <view class="title hflex acenter jbetween">
  8. <text>搜索历史</text>
  9. <text @click="toclean" v-if="history.length>0">清除历史</text>
  10. </view>
  11. <view class="history hflex acenter jbetween" v-for="(item,index) in history" :key="index">
  12. <text @click="tosearch2(item)">{{item}}</text>
  13. <u-icon name="close" color="#444444" size="16" @click="del(index)"></u-icon>
  14. </view>
  15. </view>
  16. <view class="center" v-else>
  17. <view class="history" v-for="(item,index) in list" :key="index" v-if="list.length > 0">
  18. <text @click="toinfo(item)">{{item.title}}</text>
  19. </view>
  20. <view v-else class="empty">
  21. <u-empty mode="data"></u-empty>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import $api from '@/static/js/api.js'
  28. export default {
  29. data() {
  30. return {
  31. keyword: '',
  32. history: [],
  33. list: [],
  34. page: 1,
  35. last_page: 1,
  36. }
  37. },
  38. onLoad() {
  39. this.gethistory()
  40. },
  41. watch: {
  42. keyword(val) {
  43. if(val == '') {
  44. this.gethistory()
  45. }
  46. }
  47. },
  48. onShow() {
  49. },
  50. onPullDownRefresh() {
  51. },
  52. onReachBottom() {
  53. },
  54. methods: {
  55. toinfo(item) {
  56. uni.navigateTo({
  57. url: '/pageA/topic-detail?id=' + item.id
  58. })
  59. },
  60. getlist() {
  61. var _this = this
  62. $api.req({
  63. url: 'topic',
  64. method: 'GET',
  65. data: {
  66. page: _this.page,
  67. limit: 20,
  68. is_page: 1,
  69. title:_this.keyword,
  70. }
  71. }, function(res) {
  72. if(res.code == 10000) {
  73. _this.list = _this.list.concat(res.data.list)
  74. _this.last_page = res.data.last_page
  75. }
  76. })
  77. },
  78. tosearch2(item) {
  79. this.keyword = item
  80. this.tosearch()
  81. },
  82. del(index) {
  83. this.history.splice(index, 1)
  84. if(this.history.length == 0) {
  85. this.toclean()
  86. } else {
  87. uni.setStorageSync('search-huati',JSON.stringify(this.history))
  88. }
  89. this.gethistory()
  90. console.log(this.history);
  91. },
  92. tosearch() {
  93. var temp = true
  94. for(var i=0;i<this.history.length;i++) {
  95. if(this.history[i] == this.keyword) {
  96. temp = false
  97. }
  98. }
  99. if(temp) {
  100. this.history.push(this.keyword)
  101. uni.setStorageSync('search-huati',JSON.stringify(this.history))
  102. }
  103. this.getlist()
  104. },
  105. gethistory() {
  106. if(uni.getStorageSync('search-huati')) {
  107. this.history = JSON.parse(uni.getStorageSync('search-huati'))
  108. } else {
  109. this.history = []
  110. }
  111. },
  112. toclean() {
  113. uni.removeStorageSync('search-huati')
  114. this.history = []
  115. }
  116. }
  117. }
  118. </script>
  119. <style lang="scss">
  120. .content {
  121. background: #FFFFFF;
  122. padding: 0 28rpx;
  123. .search {
  124. width: 694rpx;
  125. height: 76rpx;
  126. background: #F5F5F5;
  127. border-radius: 38rpx;
  128. margin: 0 auto;
  129. }
  130. .center {
  131. .history {
  132. padding: 32rpx 0;
  133. border-bottom: 1px solid #F9F9F9;
  134. text {
  135. font-size: 28rpx;
  136. font-weight: 400;
  137. color: #333333;
  138. }
  139. }
  140. .title {
  141. padding-top: 36rpx;
  142. text:first-child {
  143. font-size: 28rpx !important;
  144. font-family: PingFangSC, PingFang SC;
  145. font-weight: 600 !important;
  146. color: #333333;
  147. }
  148. text:last-child {
  149. font-size: 24rpx;
  150. font-family: PingFangSC, PingFang SC;
  151. font-weight: 500;
  152. color: #333333;
  153. }
  154. }
  155. }
  156. }
  157. </style>