You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

404 lines
10 KiB

<template>
<view class="content">
<view class="search-box">
<view class="input-box">
<input type="text" adjust-position="true" v-model="keyword"
:placeholder="defaultKeyword"
placeholder-class="search_text"
@confirm="doSearch"
data-key="false" confirm-type="search"
@input="onclear"></input>
<image src="/static/images/search/close.png" @tap="clears" v-if="shows == true"></image>
</view>
<view class="search-btn" @tap="doSearch" data-key="false" :style="'background:' + colors">搜索</view>
</view>
<view class="search-keyword">
<scroll-view class="keyword-list-box" v-if="isShowKeywordList" scroll-y>
<view v-for="(row, index) in keywordList" :key="index">
<view class="keyword-entry" hover-class="keyword-entry-tap">
<view class="keyword-text" @tap="jumpData(row.goods_id)">
<text style="font-size:24upx">{{row.goods_name}}</text>
</view>
</view>
</view>
</scroll-view>
<view class="keyword-box" v-if="!isShowKeywordList">
<view class="keyword-block" v-if="oldKeywordList.length>0">
<view class="keyword-list-header">
<view>历史搜索</view>
<view>
<image @tap="oldDelete" src="/static/images/search/delete.png"></image>
</view>
</view>
<view class="keyword">
<view v-for="(item, index) in oldKeywordList" :key="index" @tap="ondoSearch(item)">{{item}}</view>
</view>
</view>
<scroll-view scroll-y="true" class="" @scrolltolower="getMoreGoods"
style="height: calc(100vh - 450upx);">
<goodList style="width: 100%; background-color: #FFFFFF;"
:loading="isLoading"
:has-token="hasToken"
:has-more="!isNoMore"
:propsList="goodsList" ></goodList>
</scroll-view>
</view>
</view>
</view>
</template>
<script>
import { getGoodsList } from '@/api/index.js'
import goodList from '@/pages/commponent/home/goodList';
import { getToken } from '@/utils/auth';
var app = getApp();
export default {
data() {
return {
defaultKeyword: "",
keyword: "",
oldKeywordList: [],
hotKeywordList: [],
keywordList: [],
forbid: '',
isShowKeywordList: false,
shows: false,
colors: '',
goodsList: [],
pageNo: 1,
pageSize: 6,
isNoMore: false,
isLoading: true,
hasToken: false
};
},
components: {
goodList
},
props: {},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.setData({
colors: app.globalData.newColor
});
this.init();
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
console.log(321)
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {},
methods: {
getMoreGoods() {
if (this.isNoMore) return
this.pageNo ++
this.getGoodsList(this.keyword)
},
getGoodsList(val = '') {
this.hasToken = !!getToken()
const s = [
// {
// "rule": "eq",
// "type": "string",
// "dictCode": "",
// "val": "0",
// "field": "ifSale"
// },
{
"rule": "like",
"type": "string",
"dictCode": "",
"val": val,
"field": "goodsName"
},
{
"rule": "like",
"type": "string",
"dictCode": "",
"val": val,
"field": "category"
},
{
"rule": "like",
"type": "string",
"dictCode": "",
"val": val,
"field": "factory"
}
]
const params = {
pageNo: this.pageNo,
pageSize: this.pageSize,
superQueryParams: encodeURI(JSON.stringify(s)),
superQueryMatchType: 'or'
}
uni.showLoading()
getGoodsList(params).then(res => {
const list = res.result.records
this.goodsList = [...this.goodsList, ...list]
uni.hideLoading()
this.isNoMore = list.length < this.pageSize
})
},
init() {
this.loadDefaultKeyword();
this.loadOldKeyword();
},
loadDefaultKeyword() {
//定义默认搜索关键字可以自己实现ajax请求数据再赋值,用户未输入时,以水印方式显示在输入框,直接不输入内容搜索会搜索默认关键字
this.setData({
defaultKeyword: "请输入您想搜索的内容"
});
},
//加载历史搜索,自动读取本地Storage
loadOldKeyword() {
uni.getStorage({
key: 'OldKeys',
success: res => {
var OldKeys = JSON.parse(res.data);
this.setData({
oldKeywordList: OldKeys
});
}
});
},
doSearch() {
if (this.keyword == '') {
uni.showToast({
title: '请输入要搜索的内容',
icon: 'none'
});
return;
}
if (this.keyword && this.keyword !== '') {
this.saveKeyword(this.keyword); //保存为历史
}
this.pageNo = 1
this.goodsList = []
this.isNoMore = false
this.isLoading = true
uni.pageScrollTo({
scrollTop: 0,
duration: 300
});
this.setData({
keywordList: []
});
this.getGoodsList(this.keyword);
},
onclear(e) {
this.setData({
keyword: e.detail.value,
shows: !!e.detail.value
});
},
//保存关键字到历史记录
saveKeyword(keyword) {
uni.getStorage({
key: 'OldKeys',
success: res => {
var OldKeys = JSON.parse(res.data);
var findIndex = OldKeys.indexOf(keyword);
if (findIndex == -1) {
OldKeys.unshift(keyword);
} else {
OldKeys.splice(findIndex, 1);
OldKeys.unshift(keyword);
} //最多10个纪录
OldKeys.length > 6 && OldKeys.pop();
uni.setStorage({
key: 'OldKeys',
data: JSON.stringify(OldKeys)
});
this.setData({
oldKeywordList: OldKeys //更新历史搜索
});
},
fail: e => {
var OldKeys = [keyword];
uni.setStorage({
key: 'OldKeys',
data: JSON.stringify(OldKeys)
});
this.setData({
oldKeywordList: OldKeys //更新历史搜索
});
}
});
},
oldDelete() {
uni.showModal({
content: '确定清除历史搜索记录?',
success: res => {
if (res.confirm) {
this.oldKeywordList = []
this.goodsList = []
this.isLoading = false
uni.removeStorage({
key: 'OldKeys'
});
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
},
onsearch() { //此处可调用接口进行查询
},
clears() {
this.setData({
keyword: '',
keywordList: [],
isShowKeywordList: false
});
},
ondoSearch(item) { //点击历史记录搜索
this.keyword = item
this.pageNo = 1
this.isNoMore = false
this.isLoading = true
this.goodsList = []
this.getGoodsList(item)
},
jumpData(value) {
uni.navigateTo({
url: '/pages/views/goods/goodsDetails?goodsId'
});
}
}
};
</script>
<style scoped lang="scss">
view{display:block;}
.search-box {
background-color:rgb(242,242,242);padding:15upx 2.5%;display:flex;justify-content:space-between;position:sticky;top: 78upx;z-index: 99;}
.search-box .mSearch-input-box{width: 100%;}
.search-box .input-box {width:85%;flex-shrink:1;display:flex;justify-content:center;align-items:center;}
.search-box .search-btn {width:15%;margin:0 0 0 2%;display:flex;justify-content:center;align-items:center;flex-shrink:0;font-size:24upx;color:#fff;background:linear-gradient(to right,#4492EB,#3F92EE);border-radius:60upx;}
.search-box .input-box>input {width:95%;height:60upx;font-size:24upx;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;background-color:#ffffff;}
.placeholder-class {color:#9e9e9e;}
.search-keyword {
width:100%;background-color:rgb(242,242,242);
position: sticky;
z-index: 98;
top: 190upx;
}
.keyword-list-box {height:calc(100vh - 110upx);padding-top:10upx;border-radius:20upx 20upx 0 0;background-color:#fff;}
.keyword-entry-tap {background-color:#eee;}
.keyword-entry {width:94%;height:80upx;margin:0 3%;font-size:30upx;color:#333;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1upx #e7e7e7;}
.keyword-entry image {width:60upx;height:60upx;}
.keyword-entry .keyword-text,.keyword-entry .keyword-img {height:80upx;display:flex;align-items:center;}
.keyword-entry .keyword-text {width:90%;}
.keyword-entry .keyword-img {width:10%;justify-content:center;}
.keyword-box {
// height:calc(100vh - 110upx);
border-radius:20upx 20upx 0 0;background-color:#fff;}
.keyword-box .keyword-block {padding:10upx 0;}
.keyword-box .keyword-block .keyword-list-header {width:94%;padding:10upx 3%;font-size:27upx;color:#333;display:flex;justify-content:space-between;}
.keyword-box .keyword-block .keyword-list-header image {width:40upx;height:40upx;}
.keyword-box .keyword-block .keyword {
// width:94%;
padding:3px 20upx;
height: 200upx;
display:flex;
flex-flow:wrap;
// overflow-x: scroll;
// justify-content:
}
.keyword-box .keyword-block .hide-hot-tis {display:flex;justify-content:center;font-size:28upx;color:#6b6b6b;}
.keyword-box .keyword-block .keyword>view {
display:flex;justify-content:center;
align-items:center;border-radius:38upx;
padding:0 20upx;
margin-left: 28upx;
height:60upx;
font-size:24upx;
background-color:rgb(242,242,242);
color:#6b6b6b;
line-height: 60upx;
width: 200upx;
overflow: hidden;
}
.search_text{
font-size: 24upx;
color: #B6B6C6;
}
.input-box{
position: relative;
height: 60upx;
font-size: 24upx;
border: 0;
border-radius: 60upx;
-webkit-appearance: none;
appearance: none;
padding: 0 3%;
margin: 0;
background-color: #ffffff;
}
.input-box image{
height: 40upx;
width: 40upx;
float: right;
position: absolute;
right: 2%;
top: 50%;
transform: translateY(-50%);
z-index: 100;
}
</style>