Api接口调用

  //轮播图
      console.log('开始请求轮播图',new Date());
      wx.request({
        url: app.baseURL+'/wx/product/all_banner',
        method:"POST",
        success:function(res){
          console.log(res);
          console.log('请求轮播图完成',new Date());
          _this.setData({
            banner:res.data.data,
          })
        }
      })
      //附近热门
      wx.request({
        url: app.baseURL+'/wx/product/all_home',
        method:"POST",
        success:function(res){
          console.log(res);
          console.log('请求附近热门成功',new Date());
          _this.setData({
            subjects:res.data.data,
          })
        }
      })
    }

  },

 

Api接口调用_第1张图片

Api接口调用_第2张图片

          Api接口调用_第3张图片

             Api接口调用_第4张图片

            Api接口调用_第5张图片

                 Api接口调用_第6张图片  

Api接口调用_第7张图片

Api接口调用_第8张图片

Api接口调用_第9张图片

 

Api接口调用_第10张图片

你可能感兴趣的:(js)