search.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="page_box">
  3. <!-- 搜索框 -->
  4. <view class="head_box">
  5. <u-search v-model="searchVal" margin="30rpx" placeholder="搜索商品" height="64" @search="onSearch" @custom="onSearch" @clear="clearSearch"></u-search>
  6. </view>
  7. <view class="content_box">
  8. <!-- 搜索历史 -->
  9. <view class="search-history" v-if="historyTag.length">
  10. <view class="title-box u-flex u-row-between u-m-b-40">
  11. <view class="title">搜索历史</view>
  12. <button class="u-reset-button clear-history-btn" @tap="showModal = true">清除搜索历史</button>
  13. </view>
  14. <view class="content u-flex u-col-center u-row-left u-flex-wrap">
  15. <button class="item u-reset-button u-m-b-20 u-m-r-20 u-ellipsis-1" @tap="onSearch(item)" v-for="(item, index) in historyTag" :key="index">{{ item }}</button>
  16. </view>
  17. </view>
  18. </view>
  19. <!-- modal -->
  20. <u-modal
  21. ref="uModal"
  22. v-model="showModal"
  23. :show-cancel-button="true"
  24. confirm-color="#e9b461"
  25. cancel-color="#666666"
  26. @confirm="clearSearchHistory"
  27. confirm-text="清除"
  28. cancel-text="取消"
  29. content="是否清除历史搜索记录?"
  30. title="提示"
  31. ></u-modal>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. components: {},
  37. data() {
  38. return {
  39. searchVal: '',
  40. historyTag: [],
  41. showModal: false
  42. };
  43. },
  44. computed: {},
  45. onShow() {
  46. this.historyTag = uni.getStorageSync('searchHistoryArr') ? JSON.parse(uni.getStorageSync('searchHistoryArr')) : [];
  47. },
  48. methods: {
  49. // 搜索
  50. onSearch(e) {
  51. if (e && !this.historyTag.includes(e)) {
  52. let searchHistoryArr = JSON.stringify(this.getArr(this.historyTag, e));
  53. uni.setStorageSync('searchHistoryArr', searchHistoryArr);
  54. }
  55. this.$Router.push(`/pages/goods/list?keywords=${e}`);
  56. this.searchVal = '';
  57. },
  58. // 清除输入框
  59. clearSearch() {
  60. this.searchVal = '';
  61. },
  62. // 队列
  63. getArr(list, item) {
  64. let arr = list;
  65. let length = 10; //队列长度
  66. arr.length < length ? arr.unshift(item) : arr.pop();
  67. return arr;
  68. },
  69. // 清除历史记录
  70. clearSearchHistory() {
  71. this.historyTag = [];
  72. uni.removeStorageSync('searchHistoryArr');
  73. }
  74. }
  75. };
  76. </script>
  77. <style lang="scss">
  78. .page_box {
  79. background-color: #fff;
  80. }
  81. .search-history {
  82. padding: 30rpx;
  83. .title-box {
  84. .title {
  85. font-size: 30rpx;
  86. font-weight: bold;
  87. color: #333333;
  88. }
  89. .clear-history-btn {
  90. font-size: 28rpx;
  91. font-weight: 500;
  92. color: #999999;
  93. }
  94. }
  95. .content {
  96. width: 100%;
  97. .item {
  98. padding: 0 20rpx;
  99. line-height: 60rpx;
  100. background: #f5f6f8;
  101. border-radius: 30rpx;
  102. font-size: 28rpx;
  103. font-weight: 500;
  104. color: #333333;
  105. max-width: 690rpx;
  106. }
  107. }
  108. }
  109. </style>