小程序搜索界面---【推荐搜索列表】

小程序搜索界面---【推荐搜索列表】_第1张图片小程序搜索界面---【推荐搜索列表】_第2张图片


  
    
      
        
          
          
          
            
          
        
        
      
      
    
    
      
      
        
        
          
          
        
      
    
    
  
Page({
  data: {
    // 搜索框状态
    inputShowed: false,
    // 搜索框值
    inputVal: "",
    //搜索渲染推荐数据
    list:[
      {name:"帝霸"},
      { name: "遮天" },
      { name: "道界天下" },
      { name: "菜鸟" },
      { name: "先飞" }
    ]
  },
  // 显示搜索框
  showInput: function () {
    this.setData({
      inputShowed: true
    });
  },
  // 隐藏搜索框样式
  hideInput: function () {
    this.setData({
      inputVal: "",
      inputShowed: false
    });
  },
  // 清除搜索框值
  clearInput: function () {
    this.setData({
      inputVal: ""
    });
  },
  // 获取搜索框值
  inputTyping: function (e) {
    this.setData({
      inputVal: e.detail.value
    });
    console.log(this.data.inputVal);
  },
  // 获取选中推荐列表中的值
  btn_name:function(res){
    console.log(res.currentTarget.dataset.index, res.currentTarget.dataset.name);
  }
});
.searchbar-result{
    margin-top: 0;
    font-size: 14px;
}

/* 搜索列表名称 */
.list_name{
  position: relative;
  width: 100%;
  height: 90rpx;
  line-height: 90rpx;
  border-bottom: 1rpx solid #ddd;
}
/* 列表名称 */
.lab_name{
  position: absolute;
  left: 30rpx;
}

记得最后在app.wxss中引入wehui.wxss

你可能感兴趣的:(小程序,VUE/H5)