微信小程序搜索

<view class="app pad">
  <form class='start' bindsubmit="formSubmit">
    <view class='flex justify-content-between'>
      <view class='search'>
        <input type='text' class='search-input' name="search" placeholder='大头菜' value='{{inputValue}}' bindinput='inputBind' />
        <image src="/imgs/icon37.png" class="search-image" mode="widthFix"/>
      </view>
      <view class='search-bind' data-name='{{inputValue}}' bindtap='bindSearch'>搜索</view>
    </view>
  </form>
  <view class='end'>
    <view class='end-list'>
      <view class='end-h flex justify-content-between align-items-center'>
        <view class='end-p flex justify-content-start align-items-center'>
          <image src="/imgs/icon38.png" mode="widthFix"/>
          最近搜索
        </view>
        <image class='del' src="/imgs/icon40.png" mode="widthFix" bindtap='bindDel' />
      </view>
      <view class='end-ul'>
        <view class='end-li' wx:for="{{lately}}" wx:key="{{index}}" data-name='{{item}}' bindtap='bindSearch'>{{item}}</view>
      </view>
    </view>
    <view class='end-list'>
      <view class='end-h flex justify-content-between align-items-center'>
        <view class='end-p flex justify-content-start align-items-center'>
          <image src="/imgs/icon39.png" mode="widthFix" />
          热门搜索
        </view>
      </view>
      <view class='end-ul'>
        <view class='end-li' wx:for="{{hot}}" wx:key="{{index}}" data-name='{{item}}' bindtap='bindSearch'>{{item}}</view>
      </view>
    </view>
  </view>
  <!-- 模糊搜索展示列表 -->
  <view class='vague' wx:if="{{vague.length>0}}" style='height:{{windowHeight}}px;'>
    <view class='vague-list' wx:for="{{vague}}" wx:key="{{index}}" data-name='{{item.name}}' bindtap='bindSearch' >
      {{item.name}}
    </view>
  </view>


  <!-- 搜索结果 -->
  
  <view class='list-li pad' wx:if="{{list.length>0}}" style='height:{{windowHeight}}px;'>
    <view class='index-shap' wx:for="{{list}}" wx:key="{{index}}">
      <navigator class=' flex justify-content-start ' url='../../index/detail/index?id={{item.id}}'>
          <view class='index-shap-l flex justify-content-center align-items-center'>
            <image src='{{item.img}}' mode='widthFix'></image>
          </view>
          <view class='index-shap-r'>
            <view class='h1 flex justify-content-between align-items-center'>
              {{item.title}}
              <view>月售{{item.number}}</view>
            </view>
            <view class='h2'>{{item.article}}</view>
            <view class='p'>{{item.weight}}</view>
            <view class='span flex justify-content-start align-items-center'>
              ¥{{item.price}}
              <view class='em'>¥{{item.money}}</view>
            </view>
          </view>
      </navigator>
      <image src='/imgs/icon-add.png' mode='widthFix' class='shapAdd' bindtap='bindAdd' />
    </view>
  </view>

</view>


.app{
  padding-top: 120rpx;

}
.start{
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  height: 120rpx;
  padding: 20rpx;
  box-sizing: border-box;
  background:  #fff;
  z-index: 100;
}
.search{
  width: 588rpx;
  height: 80rpx;
  border-radius: 6rpx;
  background: #eeeeee;
  position: relative;
}
.search-input{
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 16rpx 0 76rpx;
  box-sizing: border-box;
  font-size: 28rpx;
  color: #313131;
}
.search-input::-webkit-input-placeholder{
  color: #b5b5b5;
}
.search-image{
  width: 28rpx;
  position: absolute;
  left: 30rpx;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.search-bind{
  width: 120rpx;
  height: 80rpx;
  line-height: 80rpx;
  text-align: center;
  color: #313131;
  font-size: 32rpx;
}

/* 最近搜索 */
.end-h{
  height: 58rpx;
  width: 100%;
  
}
.end-p{
  height: 100%;
  font-size: 30rpx;
  color: #b5b5b5;
}
.end-p image{
  width: 28rpx;
  margin-right: 14rpx;
}
.del{
  width: 24rpx;
}
.end-ul{
  margin-top: 15rpx;
}
.end-li{
  height: 80rpx;
  line-height: 80rpx;
  border-radius: 80rpx;
  font-size: 30rpx;
  color: #313131;
  padding: 0 40rpx;
  background: #eeeeee;
  display: inline-block;
  margin-right: 30rpx;
  margin-bottom: 25rpx;
}

/* 模糊搜索列表 */
.vague{
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  overflow: hidden;
  overflow-y: scroll;
  padding-top: 120rpx;
  box-sizing: border-box;
}
.vague-list{
  width: 100%;
  height: 80rpx;
  line-height: 80rpx;
  border-bottom: 1rpx solid #eee;
  box-sizing: border-box;
  padding: 0 20rpx;
  font-size: 30rpx;
  color: #313131;
}
.vague-list:first-child{
  border-top: 1rpx solid #eee;
}



/* 搜索结果 */
.list-box{
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  overflow-y: scroll;
  padding-top: 120rpx;
  box-sizing: border-box;
}

.list{
  width: 100%;
  height: 198rpx;
  overflow: hidden;
  padding: 20rpx;
  box-sizing: border-box;
  box-shadow:2.5rpx 4.33rpx 14.88rpx 1.12rpx rgba(255, 100, 69, 0.22);
  margin-top: 20rpx;
  background: #fff;
}
.list-img{
  width: 158rpx;
  height: 158rpx;
  overflow: hidden;
}
.list-img image{
  width: 100%;
}
.list-r{
  width: 490rpx;
}
.list-r-p{
  line-height: 30rpx;
}
.list-r-h{
  font-size: 28rpx;
  color: #333333;
  width: 370rpx;
}
.list-r-em{
  font-size: 24rpx;
  color: #fa361b
}
.list-r-span{
  font-size: 24rpx;
  color: #888888;
  width: 100%;
  line-height: 30rpx;
  margin-top: 9rpx;
  height: 70rpx;
}
.list-r-i{
  font-size: 30rpx;
  color: #fa361b;
}
.list-r-i view{
  font-size: 24rpx;
  color: #888888;
}


.list-li{
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  overflow: hidden;
  overflow-y: scroll;
  padding-top: 120rpx;
  box-sizing: border-box;
}
.index-shap{
  width: 100%;
  height: 296rpx;
  position: relative;
  padding: 35rpx 0 35rpx;
  box-sizing: border-box;
  border-bottom: 1rpx solid #eee;
}
.index-shap-l{
  width: 240rpx;
  height: auto;
  overflow: hidden;
}
.index-shap-l image{
  width: 180rpx;
}
.shapAdd{
  width: 36rpx;
  position: absolute;
  right: 30rpx;
  bottom: 48rpx;
}
.index-shap-r{
  width: 470rpx;
}
.h1{
  color: #1b1b1b;
  font-size: 32rpx;
  height: 38rpx;
}
.h1 view{
  font-size: 20rpx;
  color: #bfbfbf;
}
.h2{
  font-size: 24rpx;
  color: #a0a0a0;
  line-height: 38rpx;
  margin-top: 10rpx;
}
.p{
  color: #a0a0a0;
  font-size: 22rpx;
  display: inline-block;
  height: 36rpx;
  line-height: 36rpx;
  background: #eeeeee;
  padding: 0 10rpx;
  box-sizing: border-box;
  margin-top: 9rpx;
}
.span{
  color: #ff6e17;
  font-size: 30rpx;
  height: 38rpx;
  margin-top: 38rpx;
}
.em{
  display: inline-block;
  font-size: 24rpx;
  color: #a0a0a0;
  text-decoration:line-through;
  padding-left: 10rpx;
}

// pages/index/search/index.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    /**最近搜索 */
    lately:"",
    /**热门搜索 */
    hot: "",
    /**搜索内容 */
    inputValue:"",
    /**模糊搜索返回数据 */
    vague:"",
    /**屏幕高度 */
    windowHeight:"",
    /**搜索结果 */
    list:[],
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    var that = this,
      /**返回最近搜索和热门搜索 */
      lately = ['木门', '地板', '窗户', '合金门', '厨具'],
      hot = ['木门', '地板', '窗户', '合金门', '木门', '地板', '窗户', '厨具'],
      /**获取当前屏幕高度 */
      height = wx.getSystemInfoSync().windowHeight;
    that.setData({
      windowHeight: height,
      lately: lately,
      hot:hot,
    })
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  },
  /**
   * 输入内容,实现模糊查询
   */
  inputBind:function(e){
    var that = this,
      value = e.detail.value;
    this.search(value);
    that.setData({
      inputValue:value,
    })
  },

  search(val){
    var that = this;
   var vagueList = [""];
    if (val) {
      vagueList = [
        {
          name: '精品儿菜',
        }, {
          name: '精品金针菇',
        }, {
          name: '精品豇豆',
        }, {
          name: '精品豆芽',
        }, {
          name: '精品莲藕',
        }];
    } else {
      vagueList = val;
    }
    that.setData({
      vague: vagueList,
    })
  },
  /**
   * 最近搜索和热门搜索
   */
  bindSearch:function(e){
    var that = this;
    var inputValue = e.currentTarget.dataset.name;//搜索框内容

    var vague = [];
    that.setData({
      inputValue: inputValue,
      vague: vague,
    });
    this.formSubmit(inputValue);
  },
  /**
   * 搜索
   */

  formSubmit:function(e){
    var that = this;
    var list = [
      {
        id: "0",
        img: "/imgs/capping.png",
        title: "精品菜头",
        article: "野生自然 无添加剂",
        weight: "100g/份",
        price: "9.00",
        number:"2000",
        money: "10.00",
        num: "1"
      }, {
        id: "1",
        img: "/imgs/capping.png",
        title: "精品菜头",
        article: "野生自然 无添加剂",
        weight: "100g/份",
        price: "9.00",
        number: "2000",
        money: "10.00",
        num: "1"
      }, {
        id: "2",
        img: "/imgs/capping.png",
        title: "精品菜头",
        article: "野生自然 无添加剂",
        weight: "100g/份",
        number: "2000",
        price: "9.00",
        money: "10.00",
        num: "1"
      }
    ];

    that.setData({
      list:list
    })
  },
  /**
 * 添加购物车
 */
  bindAdd: function (e) {
    var that = this;
    wx.showModal({
      title: '提示',
      content: '是否将本产品加入购物车',
      success: function (res) {
        if (res.confirm) {
          wx.showToast({
            title: '添加成功',
            icon: 'success',
            duration: 1000
          })
        }
      }
    })
  },
  bindDel:function(e){
    var that = this;
    var lately = this.data.lately;
    wx.showModal({
      title: '提示',
      content: '是否确定删除最近搜索',
      success:function(res){
        if(res.confirm){
          lately = [];
          that.setData({
            lately: lately
          });
          wx.showToast({
            title: '删除成功',
            icon: 'success',
            duration: 1000
          })
        }
      }
    })
   
  }

})
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容