123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- // searchList.js
- //获取应用实例
- // pages/goodlist/goodlist.js
- // var request = require('../../utils/https.js')
- // var uri = 'goods/api/goodslist' //商品列表的的uri
- // var app = getApp();
- // var id = '';
- var navlist = [
- { id: " ", title: "综合", icon: "../../images/search_list_zh_pre.png" },
- { id: "price", title: "价格", icon: "../../images/search_list_zh_n.png" }
- ];
- // 热销新品
- var contentList = [
- ];
- Page({
- data: {
- placeholder: "输入搜索关键字",
- pageNo: 1,
- activeIndex: 0,
- navList: navlist,
- contentList: contentList,
- navId : 0,
- systemInfo: [],
- loadingHidden: false,
- list: [],
- num: 1,
- limt: 20,
- tab: '',
- pre0: "../../images/search_list_zh_pre.png",
- n0: "../../images/search_list_zh_n.png",
- pre: "../../images/search_list_zh_pre.png",
- n: "../../images/search_list_zh_n.png",
- noActPrice: '/images/search_jt_price_up.png',
- dataVal : "0",
- hidden: false,
- page: 0,
- size: 20,
- hasMore: true,
- hasRefesh: false,
- commodity_name: '',
- host: '',
- searchPageNum: 0, // 设置加载的第几次,默认是第一次
- callbackcount: 10, //返回数据的个数
- searchLoading: false, //"上拉加载"的变量,默认false,隐藏
- searchLoadingComplete: false, //“没有数据”的变量,默认false,隐藏
- tab : '',
- tabVal : ''
- },
- onLoad: function (options) {
- var commodity_name = options.commodity_name;
- var that = this;
- var host = getApp().globalData.servsers;
- //检索商品列表
- wx.request({
- url: host+"commodityapi/findAllforseach",
- data: {
- commodity_name: commodity_name,
- offset: 0,
- limit: 10,
- },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- header: {
- 'Accept': 'application/json'
- },
- success: function (res) {
- that.setData({
- contentList: res.data.rows,
- commodity_name: commodity_name,
- host: host,
- searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: true, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- console.log(res.data.rows);
- if (res.data.rows.length < 10) {
- that.setData({
- searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: false, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- }
- console.log(res.data.rows)
- if (res == null || res.data == null) {
- console.error('网络请求失败');
- return;
- }
- }
- });
-
- },
- //切换TAB
- tagChoose: function (options) {
- var that = this
- var id = options.currentTarget.dataset.id;
- var index = e.currentTarget.dataset.index;
- var type = e.currentTarget.dataset.dataType;
- if (id == "price" && type == '1'){//价格
- that.setData({
- activeIndex: index,
- pageNo: 1,
- pre: "../../images/search_list_zh_n.png"
- })
- }else{//综合
- //设置当前样式
- if (type == '0') {//选择综合
- that.setData({
- noActPrice: '/images/search_jt_price_up.png'
- })
- }
- that.setData({
- activeIndex: index,
- pageNo: 1
- })
- }
-
- },
- onTapTag: function (e) {
- var that = this;
- var tab = e.currentTarget.id;
- var index = e.currentTarget.dataset.index;
- var tabType = e.currentTarget.dataset.type;
- var tabVal = e.currentTarget.dataset.val;//标志是否是一个tab点击多次(价格)
- that.setData({
- tab: tab,
- tabVal: tabVal,
- searchPageNum: 0
- })
- if (tab == "price" && tabVal == '0') {//切换数据 为 从低到高 (箭头朝上)
- wx.request({
- url: that.data.host+"commodityapi/findAllforseachpricedown",
- data: {
- commodity_name: that.data.commodity_name,
- offset: 0,
- limit: 10,
- },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- header: {
- 'Accept': 'application/json'
- },
- success: function (res) {
- that.setData({
- contentList: res.data.rows,
- commodity_name: that.data.commodity_name,
- activeIndex: index,
- tab: tab,
- pageNo: 1,
- dataVal: "1",
- pre: "../../images/search_list_zh_pre.png",
- searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: true, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- if (res.data.rows.length < 10) {
- that.setData({
- searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: false, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- }
- console.log(res.data.rows)
- if (res == null || res.data == null) {
- console.error('网络请求失败');
- return;
- }
- }
- });
-
- } else if (tab == "price" && tabVal == '1') {//切换数据 为 从高到低 (箭头朝下)
- wx.request({
- url: that.data.host +"commodityapi/findAllforseachpriceup",
- data: {
- commodity_name: that.data.commodity_name,
- offset: 0,
- limit: 10,
- },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- header: {
- 'Accept': 'application/json'
- },
- success: function (res) {
- that.setData({
- contentList: res.data.rows,
- commodity_name: that.data.commodity_name,
- activeIndex: index,
- tab: tab,
- pageNo: 1,
- dataVal: "0",
- pre: "../../images/search_list_zh_n.png",
- searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: true, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- if (res.data.rows.length < 10) {
- that.setData({
- searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: false, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- }
- if (res == null || res.data == null) {
- console.error('网络请求失败');
- return;
- }
- }
- });
-
- }else {
- var that = this;
- var host = getApp().globalData.servsers;
- //检索商品列表
- wx.request({
- url: host + "commodityapi/findAllforseach",
- data: {
- commodity_name: that.data.commodity_name,
- offset: 0,
- limit: 10,
- },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- header: {
- 'Accept': 'application/json'
- },
- success: function (res) {
- that.setData({
- contentList: res.data.rows,
- commodity_name: that.data.commodity_name,
- host: host, searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: true, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- if (res.data.rows.length < 10) {
- that.setData({
- searchPageNum: 0, //第一次加载,设置1
- searchSongList: [], //放置返回数据的数组,设为空
- isFromSearch: true, //第一次加载,设置true
- searchLoading: false, //把"上拉加载"的变量设为true,显示
- searchLoadingComplete: false //把“没有数据”设为false,隐藏
- });
- }
- if (res == null || res.data == null) {
- console.error('网络请求失败');
- return;
- }
- }
- });
- that.setData({
- activeIndex: index,
- tab: tab,
- pageNo: 1,
- pre: "../../images/search_list_zh_pre.png"
- })
- }
- },
- //刷新处理
- // refesh: function (e) {
- // var that = this;
- // that.setData({
- // hasRefesh: true,
- // });
- // //检索商品列表
- // wx.request({
- // url: that.data.host+"commodityapi/findAllforseach",
- // data: {
- // commodity_name: this.data.commodity_name,
- // offset: 0,
- // limit: 1000
- // },
- // method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- // header: {
- // 'Accept': 'application/json'
- // },
- // success: function (res) {
- // that.setData({
- // contentList: res.data.rows
- // });
- // if (res == null || res.data == null) {
- // console.error('网络请求失败');
- // return;
- // }
- // }
- // });
- // },
- fetchSearchList: function () {//加载更多
- var that = this;
- var host = getApp().globalData.servsers;
- var forid = that.data.forid;
- var tab = that.data.tab;
- var tabVal = that.data.tabVal;
- if (tab == "price" && tabVal == '0') {//切换数据 为 从低到高 (箭头朝上)
- wx.request({
- url: that.data.host + "commodityapi/findAllforseachpricedown",
- data: {
- commodity_name: that.data.commodity_name,
- offset: parseInt(that.data.searchPageNum)*10,
- limit: 10
- },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- header: {
- 'Accept': 'application/json'
- },
- success: function (res) {
- if (res.data.rows.length != 0) {
- let contentList = [];
- //如果isFromSearch是true从data中取出数据,否则先从原来的数据继续添加
- that.data.isFromSearch ? contentList = res.data.rows : contentList = that.data.contentList.concat(res.data.rows)
- that.setData({
- contentList: contentList, //获取数据数组
- searchLoading: true //把"上拉加载"的变量设为false,显示
- });
- //没有数据了,把“没有数据”显示,把“上拉加载”隐藏
- } else {
- that.setData({
- searchLoadingComplete: true, //把“没有数据”设为true,显示
- searchLoading: false //把"上拉加载"的变量设为false,隐藏
- });
- }
- if (res == null || res.data == null) {
- console.error('网络请求失败');
- return;
- }
- wx.hideNavigationBarLoading(
- that.setData({
- hidden: 'hidden'
- })
- )
- }
- });
- } else if (tab == "price" && tabVal == '1') {//切换数据 为 从高到低 (箭头朝下)
- wx.request({
- url: that.data.host + "commodityapi/findAllforseachpriceup",
- data: {
- commodity_name: that.data.commodity_name,
- offset: parseInt(that.data.searchPageNum)*10,
- limit: 10
- },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- header: {
- 'Accept': 'application/json'
- },
- success: function (res) {
- if (res.data.rows.length != 0) {
- let contentList = [];
- //如果isFromSearch是true从data中取出数据,否则先从原来的数据继续添加
- that.data.isFromSearch ? contentList = res.data.rows : contentList = that.data.contentList.concat(res.data.rows)
- that.setData({
- contentList: contentList, //获取数据数组
- searchLoading: true //把"上拉加载"的变量设为false,显示
- });
- //没有数据了,把“没有数据”显示,把“上拉加载”隐藏
- } else {
- that.setData({
- searchLoadingComplete: true, //把“没有数据”设为true,显示
- searchLoading: false //把"上拉加载"的变量设为false,隐藏
- });
- }
- if (res == null || res.data == null) {
- console.error('网络请求失败');
- return;
- }
- wx.hideNavigationBarLoading(
- that.setData({
- hidden: 'hidden'
- })
- )
- }
- });
- }else{
- //检索商品列表
- wx.request({
- url: host + "commodityapi/findAllforseach",
- data: {
- commodity_name: that.data.commodity_name,
- offset: parseInt(that.data.searchPageNum),
- limit: 10
- },
- method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
- header: {
- 'Accept': 'application/json'
- },
- success: function (res) {
- if (res.data.rows.length != 0) {
- let contentList = [];
- //如果isFromSearch是true从data中取出数据,否则先从原来的数据继续添加
- that.data.isFromSearch ? contentList = res.data.rows : contentList = that.data.contentList.concat(res.data.rows)
- that.setData({
- contentList: contentList, //获取数据数组
- searchLoading: true //把"上拉加载"的变量设为false,显示
- });
- //没有数据了,把“没有数据”显示,把“上拉加载”隐藏
- } else {
- that.setData({
- searchLoadingComplete: true, //把“没有数据”设为true,显示
- searchLoading: false //把"上拉加载"的变量设为false,隐藏
- });
- }
- if (res == null || res.data == null) {
- console.error('网络请求失败');
- return;
- }
- wx.hideNavigationBarLoading(
- that.setData({
- hidden: 'hidden'
- })
- )
- }
- });
- }
- },
- //滚动到底部触发事件
- searchScrollLower: function () {
- var that = this;
- if (that.data.searchLoading && !that.data.searchLoadingComplete) {
- that.setData({
- searchPageNum: that.data.searchPageNum + 1, //每次触发上拉事件,把searchPageNum+1
- isFromSearch: false //触发到上拉事件,把isFromSearch设为为false
- });
- that.fetchSearchList();
- }
- }
- })
- var that;
- var Util = require('../../utils/util.js');
|