| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- // pages/searchGood/index.js
- import {
- getSearchKeyword,
- getProductslist,
- getProductHot
- } from '../../api/store.js';
- const app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- parameter: {
- 'navbar': '1',
- 'return': '1',
- 'title': '搜索商品',
- 'color': false
- },
- host_product: [],
- searchValue: '',
- focus: true,
- bastList: [],
- hotSearchList: [],
- limit: 8,
- page: 1,
- loading: false,
- loadend: false,
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- getRoutineHotSearch: function () {
- var that = this;
- getSearchKeyword().then(res => {
- that.setData({
- hotSearchList: res.data
- });
- });
- },
- getProductList: function () {
- var that = this;
- if (this.data.loading) return;
- if (this.data.loadend) return;
- this.setData({
- loading: true,
- loadTitle: '正在搜索'
- });
- getProductslist({
- keyword: that.data.searchValue,
- page: this.data.page,
- limit: this.data.limit
- }).then(res => {
- wx.hideLoading();
- var list = res.data,
- loadend = list.length < that.data.limit;
- that.data.bastList = app.SplitArray(list, that.data.bastList);
- that.setData({
- bastList: that.data.bastList,
- loading: false,
- loadend: loadend,
- page: that.data.page + 1,
- loadTitle: loadend ? '已全部加载' : '加载更多',
- });
- }).catch(err => {
- wx.hideLoading();
- that.setData({
- loading: false,
- loadTitle: "加载更多"
- });
- });
- },
- getHostProduct: function () {
- var that = this;
- getProductHot().then(res => {
- that.setData({
- host_product: res.data
- });
- });
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- setHotSearchValue: function (event) {
- this.setData({
- searchValue: event.currentTarget.dataset.item
- });
- this.getProductList();
- },
- setValue: function (event) {
- this.setData({
- searchValue: event.detail.value
- });
- },
- searchBut: function () {
- var that = this;
- this.setData({
- focus: false
- });
- if (that.data.searchValue.length > 0) {
- that.setData({
- page: 1,
- loadend: false,
- bastList: []
- });
- wx.showLoading({
- title: '正在搜索中'
- });
- that.getProductList();
- } else {
- return app.Tips({
- title: '请输入要搜索的商品',
- icon: 'none',
- duration: 1000,
- mask: true,
- });
- }
- },
-
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- this.getRoutineHotSearch();
- this.getHostProduct();
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- this.getProductList();
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|