uniapp搜索功能
文章描述:
uniapp搜索有以下几项功能:吸顶效果、搜索历史、删除历史
首页
吸顶效果载入自定义搜索组件,点击跳转到搜索页面
template
<!-- 使用自定义的搜索组件 -->
<view class="search-box">
<my-search @click="gotoSearch"></my-search>
</view>
script
// 跳转到分包中的搜索页面
gotoSearch(){
uni.navigateTo({
url:'../../subpkg/search/search'
})
}
style
.search-box{
// 设置定位效果为“吸顶”
position: sticky;
// 吸顶的“位置”
top: 0;
left: 0;
// 提高层级,防止被轮播图覆盖
z-index:999;
}
组件
template
<template>
<view @click="searchBoxHandler" class="my-search-container" :style="{'background-color': bgcolor}">
<!-- 使用 view 组件模拟 input 输入框的样式 -->
<view class="my-search-box" :style="{'border-radius': radius +'px'}">
<!-- 使用 uni-ui 提供的图片组件 -->
<uni-icons type="search" size="17"></uni-icons>
<text class="placeholder">搜索</text>
</view>
</view>
</template>
script
export default {
props:{
// 背景颜色
bgcolor:{
type:String,
default:"#C00000"
},
// 圆角尺寸
radius:{
type:Number,
// 单位是 px
default:18
}
},
name:"my-search",
data() {
return {
};
},
methods:{
// 点击了模拟的 input 输入框
searchBoxHandler(){
console.log('~~~~')
// 触发外界通过 @click 绑定的 click 事件处理函数
this.$emit('click')
}
}
}
style lang=”scss”
.my-search-container{
height: 50px;
background: #c00000;
display: flex;
align-items: center;
padding: 0 10px;
.my-search-box{
background-color: #fff;
height: 36px;
border-radius: 18px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
.placeholder{
font-size: 15px;
margin-left: 5px;
}
}
}
搜索
搜索结果、搜索历史、删除历史
template
<template>
<view>
<view class="search-box">
<uni-search-bar @input="input" :radius="100" cancelButton="none"></uni-search-bar>
</view>
<!-- 搜索建议列表 -->
<view class="sugg-list" v-if="searchResults.length !==0 ">
<view class="sugg-item" v-for="(item,i) in searchResults" :key="i"
@click="gotoDetail(item)">
<view class="goods-name">{{item.goods_name}}</view>
<uni-icons type="arrowright" size="16"></uni-icons>
</view>
</view>
<!-- 搜索历史 -->
<view class="history-box" v-else>
<!-- 标题区域 -->
<view class="history-title">
<text>搜索历史</text>
<uni-icons type="trash" size="17" @click="clean"></uni-icons>
</view>
<!-- 列表区域 -->
<view class="history-list">
<uni-tag :text="item" v-for="(item, i) in histories" :key="i" @click="gotoGoodsList(item)"></uni-tag>
</view>
</view>
</view>
</template>
script
export default {
data() {
return {
timer:null,
kw:'',
// 搜索的结果列表
searchResults:[],
// 搜索历史的数组
historyList:[]
};
},
onLoad() {
if(uni.getStorageSync('kw')){
this.historyList = JSON.parse(uni.getStorageSync('kw') || [])
}
},
methods:{
// input 输入事件的处理函数
input(e){
// 清除 timer 对应的延时器
clearTimeout(this.timer)
// 重新启动一个延时器,并把 timerId 赋值给 this.timer
this.timer = setTimeout(()=>{
// 如果 500 毫秒内,没有触发新的输入事件,则为搜索关键词赋值
this.kw = e
this.getSearchList()
},800)
},
async getSearchList(){
// 判断搜索关键词是否为空
if(this.kw.length === 0){
this.searchResults = []
return
}
const { data:res } = await uni.$http.get('/index.php/shop/goods/qsearch',{query:this.kw})
if(res.meta.status !== 200) return uni.$showMsg()
this.searchResults = res.message
this.saveSearchHistory()
},
gotoDetail(e){
uni.navigateTo({
url:'/subpkg/goods_detail/goods_detail?goods_id='+e.goods_id
})
},
saveSearchHistory(){
// this.historyList.push(this.kw)
const set = new Set(this.historyList)
set.delete(this.kw)
set.add(this.kw)
this.historyList = Array.from(set)
// 对搜索数据的储存
uni.setStorageSync('kw',JSON.stringify(this.historyList))
},
// 清空搜索历史
clean(){
this.historyList = []
uni.setStorageSync('kw','[]')
},
gotoGoodsList(kw){
uni.navigateTo({
url:'/subpkg/goods_list/goods_list?query=' + kw
})
}
},
computed:{
histories(){
return [...this.historyList].reverse()
}
}
}
style
page{
background: #fff;
}
/* 吸顶效果 */
.search-box{
position: sticky;
top: 0;
z-index: 999;
}
.sugg-list{
padding: 0 5px;
.sugg-item{
font-size: 12px;
padding: 13px 0;
border-bottom: 1px solid #efefef;
display: flex;
align-items: center;
justify-content: space-between;
.goods-name{
// 文字不允许换行(单行文本)
white-space: nowrap;
// 溢出部分隐藏
overflow: hidden;
// 文本溢出后,使用 ... 代替
text-overflow: ellipsis;
margin-right: 3px;
}
}
}
.history-box {
padding: 0 5px;
.history-title {
display: flex;
justify-content: space-between;
align-items: center;
height: 40px;
font-size: 13px;
border-bottom: 1px solid #efefef;
}
.history-list {
display: flex;
flex-wrap: wrap;
.uni-tag {
margin-top: 5px;
margin-right: 5px;
}
}
}
发布时间:2022/07/19
发表评论