search.js 2.2 KB
const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    noClick: true
  },
  //点击输入框
  click() {
    this.setData({
      noClick: false
    })
  },
  get_keyWords(e) {
    this.setData({
      word: e.detail.value
    })
  },
  search() {
    if (!this.data.word || this.data.word == "") {
      wx.showToast({
        title: '请输入搜索内容',
        icon: 'none',
        duration: 1000
      })
      return
    }
    wx.navigateTo({
      url: 'search_result/search_result?title=' + '搜索' + '&name=' + this.data.word
    })
  },
  //添加搜索
  add_search(e) {
    this.setData({
      noClick: false,
      word: e.currentTarget.dataset.name
    })
    wx.navigateTo({
      url: 'search_result/search_result?title=' + '搜索' + '&name=' + this.data.word
    })
  },
  //获取热门搜索标签
  get_hot() {
    let url = app.interface.hotsreach
    app.post(url, {}).then((res) => {
      this.setData({
        hot_arr: res.msg
      })
    })
  },
  //获取热门搜索标签
  get_history() {
    let url = app.interface.searchhis
    app.post(url, {}).then((res) => {
      this.setData({
        history: res.msg
      })
    })
  },
  //删除历史记录
  delete_hitory() {
    let url = app.interface.deleteseach
    app.post(url, {}).then((res) => {
      wx.showToast({
        title: '清除成功',
        duration: 1000
      })
      this.setData({
        history: []
      })
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {

  },

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

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function() {
    this.get_hot()
    this.get_history()
  },

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

  },

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

  },

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

  },

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

  },

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

  }
})