审查视图

pages/shopping-cart/shopping-cart.js 9.0 KB
倪静楠 authored
1 2
// pages/shopping-cart/shopping-cart.js
let method = require("../../utils/reuqest.js")
倪静楠 authored
3
const util = require("../../utils/util.js")
倪静楠 authored
4 5 6
Page({
  data: {
    checkType: 1,
倪静楠 authored
7
    userData: "",
倪静楠 authored
8
    addHint: false, //判断有没有地址
倪静楠 authored
9 10 11 12 13 14 15 16 17 18 19 20 21 22
    startTime: '', //日历选择获取当天日期
    date: '',
    cartList: [],
    buyData: {
      price: 100
    },
    checkNum: 0,
    stockNum: '',

    // 购物车
    carts: [], // 购物车列表
    pitchCart: [], //选中商品
    pitchList: [], //选中商品id
    hasList: false, // 列表是否有数据
倪静楠 authored
23
    cartnoData: "", //购物车是否为空
倪静楠 authored
24 25 26 27
    totalPrice: 0, // 总价,初始为0
    selectAllStatus: true, // 全选状态,默认全选
    obj: {
      name: "hello"
倪静楠 authored
28 29 30
    },
    bottomHint: false, //上拉提示
  },
倪静楠 authored
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
  // tabbar
  toClassify() {
    wx.reLaunch({
      url: '/pages/classify/classify',
    })
  },
  toHome() {
    wx.reLaunch({
      url: '/pages/home/home',
    })
  },
  toUser() {
    wx.reLaunch({
      url: '/pages/user/user',
    })
  },
倪静楠 authored
47 48 49 50 51 52 53 54 55 56
  //购物车列表
  getList() {
    method.getRequest('/cart', data => {
      wx.stopPullDownRefresh()
      if (data.statusCode == 0) {
        this.setData({
          carts: data.data,
        })
      }
    })
倪静楠 authored
57 58 59
  },
  //地址信息
  getAddress() {
倪静楠 authored
60 61 62
    // if (wx.getStorageSync('addIndex')) {
    //   wx.removeStorageSync('addIndex')
    // }
倪静楠 authored
63 64 65
    let index = wx.getStorageSync('addIndex')
    method.getRequest("/address", data => {
      if (data.statusCode == 0) {
倪静楠 authored
66
        let list = data.data.reverse();
倪静楠 authored
67
        this.setData({
倪静楠 authored
68
          userData: list[index],
倪静楠 authored
69
          addHint: true
倪静楠 authored
70 71 72 73 74 75 76 77
        })
      }
    })
  },
  goAddress() {
    wx.navigateTo({
      url: '/pages/select-address/select-address',
    })
倪静楠 authored
78
    wx.setStorageSync("shopCartAdd", 'true')
倪静楠 authored
79 80 81
  },
  //没有登录
  goAddress1() {
倪静楠 authored
82
    if (wx.getStorageSync('Authorization')) {
倪静楠 authored
83 84 85
      wx.navigateTo({
        url: '/pages/select-address/select-address',
      })
倪静楠 authored
86 87
      wx.setStorageSync("shopCartAdd", 'true')
    } else {
倪静楠 authored
88 89
      wx.showToast({
        title: '请先登录!',
倪静楠 authored
90
        icon: 'none'
倪静楠 authored
91
      })
倪静楠 authored
92
      setTimeout(() => {
倪静楠 authored
93
        util.getUser();
倪静楠 authored
94 95
      }, 2000)
倪静楠 authored
96
    }
倪静楠 authored
97
倪静楠 authored
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
  },
  //配送时间
  bindDateChange: function (e) {
    this.setData({
      date: e.detail.value
    })
  },
  //获取当天时间
  getDayTime() {
    var myDate = new Date();
    var year = myDate.getFullYear();
    var month = myDate.getMonth();
    var day = myDate.getDate();
    var dayNow = year + '-' + (month + 1) + "-" + day;
    this.setData({
      startTime: dayNow
    })
  },
  //查看详情
  goDetail(e) {
    let id = e.currentTarget.dataset.goodsid;
    console.log(id, 'id')
    wx.navigateTo({
      url: '/pages/product-detail/product-detail?id=' + id,
    })
  },
  //购物车事件
  // 选中事件
  selectList(e) {
    let list = [];
    const index = e.currentTarget.dataset.index;
    let carts = this.data.carts;
    const selected = carts[index].selected;
    carts[index].selected = !selected;
    list.push(selected)
    this.setData({
      carts: carts
    });
    this.getTotalPrice();
    this.getTotalNum();
  },
倪静楠 authored
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
  //删除
  delGoods(e) {
    let that = this;
    wx.showModal({
      title: '提示',
      content: '确定删除该商品吗',
      success(res) {
        if (res.confirm) {
          const index = e.currentTarget.dataset.index;
          const cartIds = e.currentTarget.dataset.cartid;
          let carts = that.data.carts;
          carts.splice(index, 1);
          that.setData({
            carts: carts
          });
          method.deleteRequest("/cart/" + cartIds, data => {
            if (data.statusCode == 0) {
              wx.showToast({
                title: '删除成功',
                icon: 'none'
              })
            }
          })
          if (!carts.length) {
            this.setData({
              hasList: false
            });
          } else {
            this.getTotalPrice();
          }
        } else if (res.cancel) {
          console.log('用户点击取消')
        }
倪静楠 authored
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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
      }
    })
  },
  // 全选
  selectAll(e) {
    let selectAllStatus = this.data.selectAllStatus;
    selectAllStatus = !selectAllStatus;
    let carts = this.data.carts;

    for (let i = 0; i < carts.length; i++) {
      carts[i].selected = selectAllStatus;
    }
    this.setData({
      selectAllStatus: selectAllStatus,
      carts: carts
    });
    this.getTotalPrice();
  },

  // 数量增加
  addCount(e) {
    const idx = e.currentTarget.dataset.index;
    const goodSkuId = e.currentTarget.dataset.goodskuid;
    let carts = this.data.carts;
    let num = carts[idx].num;
    carts.forEach((item, index) => {
      if (idx == index) {
        if (carts[idx].num >= carts[idx].goodsStock) {
          wx.showToast({
            title: '达到最大库存',
          })
          return false;
        } else {
          num = num + 1;
          // console.log(num,'num')
          // console.log(carts[index],'index')
          carts[idx].num = num;
          this.setData({
            carts: carts
          });
          method.postRequest("/cart/" + goodSkuId, {}, data => {
            if (data.statusCode == 0) {

            }
          })
          this.getTotalPrice();
          this.getTotalNum();
        }
      }

    })
  },

  //数量减少
  minusCount(e) {
    const index = e.currentTarget.dataset.index;
    const obj = e.currentTarget.dataset.obj;
    const goodSkuId = e.currentTarget.dataset.goodskuid;
    let carts = this.data.carts;
    let num = carts[index].num;
    if (num <= 1) {
      wx.showToast({
        title: '已经是最少了',
      })
      return false;
    }
    num = num - 1;
    carts[index].num = num;
    this.setData({
      carts: carts
    });
    method.postRequest("/cart/less/" + goodSkuId, {}, data => {
      if (data.statusCode == 0) {

      }
    })
    this.getTotalPrice();
    this.getTotalNum();
  },

  //计算总价
  getTotalPrice() {
    let carts = this.data.carts;
    let total = 0;
    for (let i = 0; i < carts.length; i++) {
      if (carts[i].selected) {
        total += carts[i].num * carts[i].goodsPrice;
      }
    }
    this.setData({
      carts: carts,
      totalPrice: total.toFixed(2)
    });
  },
  //已选数量
  getTotalNum() {
    let carts = this.data.carts;
    let totalNum = 0;
    for (let i = 0; i < carts.length; i++) {
      if (carts[i].selected) {
        totalNum += carts[i].num
      }
    }
    this.setData({
      carts: carts,
      checkNum: totalNum
    })
  },
  //立即购买
  immediatelyPay() {
    if (this.data.checkNum == 0) {
      wx.showToast({
        title: '未选择购买商品',
        icon: 'none'
      })
      return false
    } else {
      wx.navigateTo({
        url: '/pages/cart-affirm-order/cart-affirm-order',
      })
      let carts = this.data.carts;
      for (let i = 0; i < carts.length; i++) {
        if (carts[i].selected && this.data.pitchList.indexOf(carts[i].cartId) == -1) {
          this.data.pitchList.push(carts[i].cartId)
          this.data.pitchCart.push(carts[i])
        }
      }
倪静楠 authored
300 301
      let list = this.data.carts;
      list.forEach((item, index) => {
倪静楠 authored
302 303 304 305 306 307 308 309
        if (item.selected == true) {
          console.log(item, "item")
          list.splice(index, 1)
          console.log(list, 'list')
        }
        this.setData({
          carts: list
        })
倪静楠 authored
310
      })
倪静楠 authored
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
      wx.setStorageSync('date', this.data.date)
      console.log(this.data.date, 'datess')
      wx.removeStorageSync('time')
      wx.setStorageSync('pitchList', this.data.pitchList)
      wx.setStorageSync('pitchCart', this.data.pitchCart)
    }
  },
  //购物车为空
  goHome() {
    wx.switchTab({
      url: '/pages/home/home',
    })
  },
  onLoad: function (options) {
    this.getAddress();
  },

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

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
倪静楠 authored
339
    this.getList();
倪静楠 authored
340 341
    this.setData({
      hasList: true,
倪静楠 authored
342
      carts: [],
倪静楠 authored
343
      checkNum: 0
倪静楠 authored
344 345 346 347 348 349 350 351
    });
    this.getTotalPrice();
    this.getAddress() //获取默认地址
    this.getDayTime() //获取当太日期
    this.setData({ //每次购物车下单重新选择商品
      pitchCart: [],
      pitchList: []
    })
倪静楠 authored
352
倪静楠 authored
353
    setTimeout(() => { //判断购物车是否有商品
倪静楠 authored
354 355 356 357
      if (this.data.carts.length == 0) {
        this.setData({
          cartnoData: true
        })
倪静楠 authored
358 359 360 361
      } else {
        this.setData({
          cartnoData: false
        })
倪静楠 authored
362
      }
倪静楠 authored
363
    }, 300)
倪静楠 authored
364
倪静楠 authored
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
  },

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

  },

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

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
倪静楠 authored
384 385 386
  onRefresh() {
    this.getList();
  },
倪静楠 authored
387
  onPullDownRefresh: function () {
倪静楠 authored
388
    this.onRefresh()
倪静楠 authored
389 390 391 392 393 394
  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
倪静楠 authored
395 396 397 398 399 400 401 402
    this.setData({
      bottomHint: true
    })
    setTimeout(() => {
      this.setData({
        bottomHint: false
      })
    }, 2000)
倪静楠 authored
403 404 405 406 407 408 409 410 411
  },

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

  }
})