审查视图

pages/classify/classify.js 8.1 KB
倪静楠 authored
1
// pages/classify/classify.js
倪静楠 authored
2 3
let method = require("../../utils/reuqest.js");
const util = require("../../utils/util.js");
倪静楠 authored
4 5
Page({
  data: {
倪静楠 authored
6 7
    page: 1,
    classifyId: "",
倪静楠 authored
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
    idx: 0, //商品规格索引
    check: false, //商品规格选择
    goodsData: '', //获取商品库存
    keyword: '',
    id: '',
    activeKey: 0,
    count: 1,
    stockNum: '',
    integral: '', //积分
    lableArray: [],
    lableOne: [],
    lableTwo: [],
    lableThree: [],
    list: [],
    location: '',
    latitude: '', //维度
    longitude: '', //经度
倪静楠 authored
25
    bottomHint: false //触底提示
倪静楠 authored
26
  },
倪静楠 authored
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
  // tabbar
  toHome() {
    wx.reLaunch({
      url: '/pages/home/home',
    })
  },
  toShopCart() {
    wx.reLaunch({
      url: '/pages/shopping-cart/shopping-cart',
    })
  },
  toUser() {
    wx.reLaunch({
      url: '/pages/user/user',
    })
  },
  //获取定位
倪静楠 authored
44
  getLocation() {
倪静楠 authored
45
    let that = this;
倪静楠 authored
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    wx.getLocation({
      type: 'gcj02',
      success(res) {
        that.setData({
          latitude: res.latitude,
          longitude: res.longitude
        })
        that.location();
        const speed = res.speed
        const accuracy = res.accuracy
      }
    })
  },
  location() {
    let that = this
    let str = that.data.latitude + ',' + that.data.longitude;
    method.getRequest("/goods/geocoder/v1/" + str, data => {
      if (data.statusCode == 0) {
        that.setData({
          location: data.data.address
        })
      }
    })
  },
  //搜索框
  doSearch() {

  },
  getKeyWord(e) {
    this.setData({
      keyword: e.detail.value
    })
  },
  search() {
    if (this.data.keyword == '') {
      wx.showToast({
        title: '请输入商品名称',
        icon: 'none'
      })
      return false
    }
    wx.navigateTo({
      url: '/pages/searchRequest/searchRequest?keyword=' + this.data.keyword,
    })
  },
倪静楠 authored
91
  // 导航菜单
倪静楠 authored
92 93 94 95 96 97 98 99 100 101 102 103 104 105
  catalog() {
    method.getRequest('/category/getCategoryList', data => {
      if (data.statusCode == 0) {
        this.setData({
          lableArray: data.data
        })
        this.onData()
      }
    })
  },
  onChange(e) {
    let that = this;
    let list = that.data.lableArray;
    let id = e.currentTarget.dataset.id;
倪静楠 authored
106 107 108
    this.setData({
      classifyId: id
    })
倪静楠 authored
109 110 111
    that.dataRequest(id)
  },
  //第一次数据请求
倪静楠 authored
112
  onData(id) {
倪静楠 authored
113
    let postData = {
倪静楠 authored
114 115
      categoryId:this.data.classifyId,
      page: this.data.page,
倪静楠 authored
116 117 118
      size: 10
    }
    method.postRequest('/goods/list', postData, data => {
倪静楠 authored
119
      let lists = this.data.page == 1 ? data.data : this.data.list.concat(data.data)
倪静楠 authored
120 121
      if (data.statusCode == 0) {
        this.setData({
倪静楠 authored
122
          list: lists
倪静楠 authored
123
        })
倪静楠 authored
124
      }
倪静楠 authored
125
    })
倪静楠 authored
126 127 128
  },
  //分类数据请求
  dataRequest: function (id) {
倪静楠 authored
129 130 131
    this.setData({
      page:1
    })
倪静楠 authored
132 133
    let postData = {
      categoryId: id,
倪静楠 authored
134
      page: this.data.page,
倪静楠 authored
135 136 137
      size: 10
    }
    method.postRequest('/goods/list', postData, data => {
倪静楠 authored
138 139
      wx.stopPullDownRefresh()
      let lists = this.data.page == 1 ? data.data : this.data.list.concat(data.data)
倪静楠 authored
140 141
      if (data.statusCode == 0) {
        this.setData({
倪静楠 authored
142
          list: lists
倪静楠 authored
143
        })
倪静楠 authored
144
      }
倪静楠 authored
145
    })
倪静楠 authored
146 147 148 149 150 151 152 153 154 155 156 157
  },
  addCart(e) {
    let id = e.currentTarget.dataset.id
    this.setData({
      showMask: true
    })
    method.getRequest("/goods/" + id, data => {
      if (data.statusCode == 0) {
        this.setData({
          goodsData: data.data,
          stockNum: data.data.list[0].goodsStock
        })
倪静楠 authored
158
      } else {
倪静楠 authored
159 160 161
        setTimeout(() => {
          util.getUser()
        }, 2000)
倪静楠 authored
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
      }
    })
  },
  closeMask() {
    this.setData({
      showMask: false
    })
  },
  confrimCart() {
    let postData = {
      goodsSkuId: this.data.skuId,
      num: this.data.count
    }
    method.postRequest("/cart", postData, data => {
      if (data.statusCode == 0) {
        this.setData({
          showMask: false
        })
        wx.showToast({
          title: "添加购物车成功",
          icon: 'success',
          duration: 1000
        })
      } else {
        wx.showToast({
          title: '请选择商品规格',
          icon: 'none',
          duration: 1000
        })
      }
    })
  },
  decNum() {
    let that = this
    let count = that.data.count
    if (that.data.count > 1) {
      count--
    } else {
      wx.showToast({
        title: '已经是最少了哦~',
        icon: 'none'
      })
    }
    that.setData({
      count
    })
  },
  addNum(e) {
    let that = this
    let count = that.data.count
    let stock = that.data.stockNum
    if (count < stock) {
      count++
    } else {
      wx.showToast({
        title: '不能超过库存哦~',
        icon: 'none'
      })
    }
    that.setData({
      count
    })
  },
  check(e) {
    let list = this.data.goodsData.list;
    let skuId = e.currentTarget.dataset.id;
    this.setData({
      idx: e.currentTarget.dataset.index,
      skuId: skuId
    })
  },
  //兑换
  exchange(e) {
    let jifenNum = e.currentTarget.dataset.integral;
    let defaultSku = e.currentTarget.dataset.defaultSku;
    wx.setStorageSync('defaultSku', e.currentTarget.dataset.defaultsku)
    //获取用户积分
    method.getRequest("/myUser/queryUserInfo", data => {
      if (data.statusCode == 0) {
        this.setData({
          integral: data.data.integral
        })
        if (jifenNum > this.data.integral) {
          wx.showToast({
            title: '您的积分目前不够兑换该商品',
            icon: 'none'
          })
          return false
        } else {
          wx.navigateTo({
            url: '/pages/integral-order/integral-order',
          })
        }
倪静楠 authored
255
      } else {
倪静楠 authored
256 257 258
        setTimeout(() => {
          util.getUser()
        }, 2000)
倪静楠 authored
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
      }
    })

  },
  //商品详情
  goGoodsDetail(e) {
    let goodsId = e.currentTarget.dataset.id;
    wx.setStorageSync('goodsId', goodsId)
    wx.navigateTo({
      url: '/pages/product-detail/product-detail',
    })
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    // this.dataRequest();
倪静楠 authored
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
    this.catalog();
    if (wx.getStorageSync('categoryId')) {
      let id=wx.getStorageSync('categoryId')
      this.setData({
        classifyId: id
      })
      this.dataRequest(this.data.classifyId);
    } else {
      setTimeout(() => {
        this.setData({
          classifyId: this.data.lableArray[0].categoryId
        })
      }, 500)
      this.dataRequest(this.data.classifyId);
    }
倪静楠 authored
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
    wx.removeStorageSync('categoryId')
    wx.removeStorageSync('index')
    this.catalog();
  },

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

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    let categoryId = wx.getStorageSync('categoryId')
    let index = wx.getStorageSync('classifyIndex')
倪静楠 authored
310 311 312 313 314 315 316 317 318 319
    if(index){
      this.setData({
        activeKey: index
      });
    }else{
      this.setData({
        activeKey:0
      })
    }
    wx.removeStorageSync("classifyIndex")
倪静楠 authored
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
    let that = this;
    wx.getLocation({
      type: 'gcj02',
      success(res) {
        that.setData({
          latitude: res.latitude,
          longitude: res.longitude
        })
        that.location();
        const speed = res.speed
        const accuracy = res.accuracy
      },
      fail(errInfo) {
        console.info(errInfo)
      }
    })
倪静楠 authored
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
  },

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

  },

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

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
倪静楠 authored
355 356 357 358 359 360 361
  onRefresh() {
    this.setData({
      page: 1,
      list: []
    })
    this.dataRequest(this.data.classifyId);
  },
倪静楠 authored
362
  onPullDownRefresh: function () {
倪静楠 authored
363
    this.onRefresh()
倪静楠 authored
364 365 366 367 368 369
  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
倪静楠 authored
370 371 372 373 374 375 376 377 378 379 380 381
    this.setData({
      page: Number(this.data.page) + 1
    })
    this.dataRequest(this.data.classifyId);
    this.setData({
      bottomHint: true
    })
    setTimeout(() => {
      this.setData({
        bottomHint: false
      })
    }, 2000)
倪静楠 authored
382 383 384 385 386 387 388 389 390
  },

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

  }
})