1.很长时间没有更新博客了,从今天起开始好好写博客,与各位同僚一起进步。
2.前一段时间技术经理提出要做一个景区定位锁定周边民宿的功能,同时要附加着匹配高亮,然后 开始写。
3.在原来的搜索框写了方法。
//输入框实时搜索
//输入框实时搜索
inputChange: function(e) {
var that = this;
var currentStatu = 'open'
this.util(currentStatu)
var val = that.trim(e.detail.value);
that.setData({
searchValue: val
})
if(val == ''){
var currentStatu = 'close'
this.util(currentStatu)
}
// setTimeout(function () {
if (val != ''){
wx.request({
url: app.globalData.http_newurl + 'index/search-list',
data: {
authToken: app.globalData.api_authToken,
token: app.globalData.api_token,
time: app.globalData.api_time,
keywords: val,
keywords_city: app.globalData.city,
keywords_city_id: app.globalData.city_id,
},