当前位置:   article > 正文

新版HBuilderX在uni_modules创建搜索search组件_/uni_modules/my-search/components/my-search/my-sea

/uni_modules/my-search/components/my-search/my-search
  • 1、创建自定义组件 my-search

新版HBuilder没有了 component 文件夹,但是有 uni_modules 文件夹,用来创建组件:

  1. 右键 uni_modules 文件夹,点击 新建uni_modules创建
  2. 在弹出框,填写组件名字,例如:my-search

  • 2、使用该组件

运行到微信开发者工具查看:

 修改 my-search 组件的样式:

  1. <template>
  2. <view class="my-search-container" :style="{'background-color': bgcolor}">
  3. <view class="my-search-box" :style="{'border-radius': radius + 'px'}" @click="searchBoxHandler">
  4. <uni-icons type="search" size="17"></uni-icons>
  5. <text class="placeholder">搜索</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. // 别人在使用该组件时可以,传递搜索框外部颜色,和圆角度
  12. props: {
  13. // 背景颜色
  14. bgcolor: {
  15. type: String,
  16. default: '#C00000'
  17. },
  18. // 圆角尺寸
  19. radius: {
  20. type: Number,
  21. // 单位是 px
  22. default: 18
  23. }
  24. },
  25. data() {
  26. return {}
  27. },
  28. methods: {
  29. // 点击了模拟的 input 输入框
  30. searchBoxHandler() {
  31. // 触发外界通过 @click 绑定的 click 事件处理函数
  32. this.$emit('click')
  33. }
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. .my-search-container {
  39. // 移除背景颜色,改由 props 属性控制
  40. // background-color: #C00000;
  41. height: 50px;
  42. padding: 0 10px;
  43. display: flex;
  44. align-items: center;
  45. }
  46. .my-search-box {
  47. height: 36px;
  48. background-color: #ffffff;
  49. // 移除圆角尺寸,改由 props 属性控制
  50. // border-radius: 15px;
  51. width: 100%;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. .placeholder {
  56. font-size: 15px;
  57. margin-left: 5px;
  58. }
  59. }
  60. </style>

某个用到 搜索框的页面:

  1. // 点击搜索跳转 分包
  2. gotoSearch() {
  3. uni.navigateTo({
  4. url: '/subpkg/search/search'
  5. })
  6. },

 注意:我们上面搜索框,是给用户看的,实际上,不能搜索,我们需要点击跳转到搜索页面

  • 3、新建分包 search 页面

建立一个分包:【名称为 search】

uniapp 配置小程序分包_打不着的大喇叭的博客-CSDN博客

  • 4、使用已有的扩展uni-search-bar组件

网址:uni-app官网 (dcloud.net.cn) 

  1. <template>
  2. <view>
  3. <view class="search-box">
  4. <!-- 使用 uni-ui 提供的搜索组件 -->
  5. <uni-search-bar @input="input" placeholder="请输入搜索内容" clearButton="always" focus :radius="100"
  6. cancelButton="none"></uni-search-bar>
  7. </view>
  8. <!-- 搜索建议列表 -->
  9. <view class="sugg-list" v-if="searchResults.length !== 0">
  10. <view class="sugg-item" v-for="(item, i) in searchResults" :key="i" @click="gotoDetail(item.goods_id)">
  11. <view class="goods-name">{{item.goods_name}}</view>
  12. <uni-icons type="arrowright" size="16"></uni-icons>
  13. </view>
  14. </view>
  15. <!-- 搜索历史 -->
  16. <view class="history-box" v-else>
  17. <!-- 标题区域 -->
  18. <view class="history-title">
  19. <text>搜索历史</text>
  20. <uni-icons type="trash" size="17" @click="cleanHistory"></uni-icons>
  21. </view>
  22. <!-- 列表区域 -->
  23. <view class="history-list">
  24. <uni-tag :text="item" v-for="(item, i) in historys" :key="i" :inverted="true"
  25. @click="gotoGoodsList(item)"></uni-tag>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. // 延时器的 timerId
  35. timer: null,
  36. // 搜索关键词
  37. kw: '',
  38. // 搜索关键词的历史记录
  39. historyList: ['a', 'app', 'apple'],
  40. // 搜索结果列表
  41. searchResults: []
  42. };
  43. },
  44. onLoad() {
  45. this.historyList = JSON.parse(uni.getStorageSync('kw') || '[]')
  46. },
  47. computed: {
  48. historys() {
  49. // 注意:由于数组是引用类型,所以不要直接基于原数组调用 reverse 方法,以免修改原数组中元素的顺序
  50. // 而是应该新建一个内存无关的数组,再进行 reverse 反转
  51. return [...this.historyList].reverse()
  52. }
  53. },
  54. methods: {
  55. input(e) {
  56. // 清除 timer 对应的延时器
  57. clearTimeout(this.timer)
  58. // 重新启动一个延时器,并把 timerId 赋值给 this.timer
  59. this.timer = setTimeout(() => {
  60. // 如果 500 毫秒内,没有触发新的输入事件,则为搜索关键词赋值
  61. this.kw = e
  62. // 根据关键词,查询搜索建议列表
  63. this.getSearchList()
  64. }, 500)
  65. },
  66. // 点击列表跳转到商品列表页面
  67. gotoDetail(goods_id) {
  68. uni.navigateTo({
  69. // 指定详情页面的 URL 地址,并传递 goods_id 参数
  70. url: '/subpkg/goods_detail/goods_detail?goods_id=' + goods_id
  71. })
  72. },
  73. // 点击标签跳转到商品列表页面
  74. gotoGoodsList(kw) {
  75. uni.navigateTo({
  76. url: '/subpkg/goods_list/goods_list?query=' + kw
  77. })
  78. },
  79. // 保存搜索关键词的方法
  80. saveSearchHistory() {
  81. // 1. 将 Array 数组转化为 Set 对象
  82. const set = new Set(this.historyList)
  83. // 2. 调用 Set 对象的 delete 方法,移除对应的元素
  84. set.delete(this.kw)
  85. // 3. 调用 Set 对象的 add 方法,向 Set 中添加元素
  86. set.add(this.kw)
  87. // 4. 将 Set 对象转化为 Array 数组
  88. this.historyList = Array.from(set)
  89. // 调用 uni.setStorageSync(key, value) 将搜索历史记录持久化存储到本地
  90. uni.setStorageSync('kw', JSON.stringify(this.historyList))
  91. },
  92. // 清空搜索历史记录
  93. cleanHistory() {
  94. // 清空 data 中保存的搜索历史
  95. this.historyList = []
  96. // 清空本地存储中记录的搜索历史
  97. uni.setStorageSync('kw', '[]')
  98. },
  99. // 根据搜索关键词,搜索商品建议列表
  100. async getSearchList() {
  101. // 判断关键词是否为空
  102. if (this.kw === '') {
  103. this.searchResults = []
  104. return
  105. }
  106. // 发起请求,获取搜索建议列表
  107. const {
  108. data: res
  109. } = await uni.$http.get('/api/public/v1/goods/qsearch', {
  110. query: this.kw
  111. })
  112. if (res.meta.status !== 200) return uni.$showMsg()
  113. this.searchResults = res.message
  114. // 查询到搜索建议之后,调用 saveSearchHistory() 方法保存搜索关键词
  115. this.saveSearchHistory()
  116. },
  117. }
  118. }
  119. </script>
  120. <style lang="scss">
  121. // 设置搜索框的背景颜色
  122. .uni-searchbar {
  123. background-color: #c00000;
  124. }
  125. // 设置为吸顶效果
  126. .search-box {
  127. position: sticky;
  128. top: 0;
  129. z-index: 999;
  130. }
  131. // 搜索列表
  132. .sugg-list {
  133. padding: 0 5px;
  134. .sugg-item {
  135. font-size: 12px;
  136. padding: 13px 0;
  137. border-bottom: 1px solid #efefef;
  138. display: flex;
  139. align-items: center;
  140. justify-content: space-between;
  141. .goods-name {
  142. // 文字不允许换行(单行文本)
  143. white-space: nowrap;
  144. // 溢出部分隐藏
  145. overflow: hidden;
  146. // 文本溢出后,使用 ... 代替
  147. text-overflow: ellipsis;
  148. margin-right: 3px;
  149. }
  150. }
  151. }
  152. // 搜索历史
  153. .history-box {
  154. padding: 0 10px;
  155. .history-title {
  156. display: flex;
  157. justify-content: space-between;
  158. align-items: center;
  159. height: 40px;
  160. font-size: 13px;
  161. border-bottom: 1px solid #efefef;
  162. }
  163. .history-list {
  164. display: flex;
  165. flex-wrap: wrap;
  166. margin-top: 5px;
  167. .uni-tag {
  168. margin-top: 5px;
  169. margin-right: 5px;
  170. }
  171. }
  172. }
  173. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/379396
推荐阅读
相关标签
  

闽ICP备14008679号